-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Porting code from coffee-script to es6 (#17)
* Repo configuration update * Refactoring to es6 and getting rid of the generator logic * Switching from dist/ to lib/ * Adding basic integration tests to verify js and coffee-script configs from the main module * Removing unneeded plugin * Updating coveralls config * Updating coveralls package version * Trying coveralls config to see if it resolves coveralls issue * Disabling coveralls while I figure out why it's not syncing properly * Updating the readme * Updating version for rc * Adding change log * Updating package configuration for testing * Switching to eslint-config-opentable lint configuration * Adding istanbul config to fix minor coverage issue * Published version 1.0.0-rc.2 * Allowing the src and test directories into the package * Disabling coveralls * Removing `next` tag * Resetting to version `0.1.2`, that last public version and removing the next tag. * Using node 4 alias
- Loading branch information
Showing
58 changed files
with
676 additions
and
394 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"presets": ["es2015-loose"], | ||
"plugins": ["add-module-exports"], | ||
"sourceMaps": "both", | ||
"retainLines": "true" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
service_name: travis-ci | ||
repo_token: KmF9mrkUzNxpeEFy9UZpa6i1zLgz6xgmF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
dist/ | ||
lib/ | ||
coverage/* | ||
test/fixtures/**/*.js | ||
test/generated/*.js | ||
test/generated/**/*.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": "opentable", | ||
"env": { | ||
"node": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,6 @@ | |
node_modules/ | ||
bower_components/ | ||
/coverage | ||
/dist | ||
/lib | ||
.DS_Store* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
instrumentation: | ||
root: src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.eslintrc | ||
.eslintignore | ||
|
||
/.editorconfig | ||
/.babelrc | ||
/.travis.yml | ||
/.npmignore | ||
|
||
/coverage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
language: node_js | ||
|
||
node_js: | ||
- "0.10" | ||
- "0.11" | ||
- "0.12" | ||
- "4.2" | ||
- "5" | ||
after_success: | ||
- 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls' | ||
- '0.10' | ||
- '0.11' | ||
- '0.12' | ||
- '4' | ||
- '5' | ||
- '6' | ||
|
||
script: npm run build-and-test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<a name="1.0.0"></a> | ||
# 1.0.0 (2016-07-17) | ||
|
||
|
||
### Bug Fixes | ||
|
||
- | ||
|
||
### Features | ||
|
||
* Switching from coffee-script to ES2015. Includes a minor refactor which doesn't change the implementation. | ||
* Adding better integration tests. | ||
|
||
### BREAKING CHANGES | ||
|
||
* SpurConfigGenerator is no longer a part of the project. It wasn't used so it was removed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.