-
Notifications
You must be signed in to change notification settings - Fork 3.7k
ES6 at Last #8224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
ES6 at Last #8224
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
36cd68c
Get Cesium Viewer working using ES6
mramato 7576e7c
Add rollup plugin to strip pragmas
shehzan10 c2f20b3
Get ES6 unit tests and coverage running
mramato b7cc90f
Merge pull request #8186 from shehzan10/es6-playground-strip-pragmas
mramato 4fa71fd
Merge pull request #8199 from AnalyticalGraphicsInc/es6-tests
mramato 9caba82
Merge remote-tracking branch 'origin/es6-staging' into es6-viewer
mramato 8ec945f
Remove requirejs and update packaging for ES6
mramato 57b4102
Merge pull request #8210 from AnalyticalGraphicsInc/es6-build
mramato 6d9a2e4
Can't used const in Cesium yet.
mramato eb08e42
Sandcastle support for Cesium ES6
mramato ef1e02d
Merge pull request #8211 from AnalyticalGraphicsInc/es6-sandcastle
mramato b4ac007
Fix Timeline demo
mramato 0c8e08a
Merge branch 'es6-staging' into es6-viewer
mramato 332fc06
Fixes after merge.
mramato 4d17065
Minor clean-up
mramato cae2a7e
Merge remote-tracking branch 'origin/es6-staging' into es6-viewer
mramato 7ecc56c
Get specs and travis passing
mramato fca8740
Merge remote-tracking branch 'origin/es6-staging' into es6-viewer
mramato 47556c3
Workers -> WorkersES6, Workers/Build -> Workers
mramato c7b295e
Merge pull request #8221 from AnalyticalGraphicsInc/es6-move-workers
mramato e7efbd2
Fix gallery index on travis
mramato b2dc8a6
Make rollup-plugin-strip-pragma its own npm module.
mramato 0bd0db5
Ability to run specs against built versions of cesium.
mramato da62eb2
Merge pull request #8223 from AnalyticalGraphicsInc/built-specs
mramato ad9f5cb
Merge remote-tracking branch 'origin/es6-staging' into es6-viewer
mramato 5f2bc5b
Remove almond.
mramato 728f85b
Fix cloc, use built version for windows appveyor.
mramato eb16851
Avoid polluting global namespace in Node.js.
mramato 84a2fbf
Fix convertToModules
mramato acd123e
Merge remote-tracking branch 'origin/es6-staging' into es6-at-last
mramato 0fd9486
Changes after review.
mramato b03d680
Fix built Sandcastle open in standalone.
mramato File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,16 +1,34 @@ | ||
| { | ||
| "extends": "../../.eslintrc.json", | ||
| "env": { | ||
| "amd": true | ||
| }, | ||
| "globals": { | ||
| "JSON": true, | ||
| "require": true, | ||
| "console": true, | ||
| "Sandcastle": true, | ||
| "Cesium": true | ||
| }, | ||
| "parserOptions": { | ||
| "ecmaVersion": 5, | ||
| "sourceType": "script" | ||
| }, | ||
| "rules": { | ||
| "no-alert": ["off"], | ||
| "no-implicit-globals": "off", | ||
| "no-unused-vars": ["off"], | ||
| "quotes": "off" | ||
| } | ||
| }, | ||
| "overrides": [ | ||
| { | ||
| "files": [ | ||
| "load-cesium-es6.js" | ||
| ], | ||
| "parserOptions": { | ||
| "ecmaVersion": 2015, | ||
| "sourceType": "module" | ||
| } | ||
| } | ||
| ] | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.