-
-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Closes #606, Closes #733, Closes #717 ## Changes: - Changed internal Excalibur code into modules (ES6 style) - Excalibur uses UMD module style for distribution (supports CommonJS, AMD, and window global) - Bundled AMD modules using Almond.js micro loader - Added two declaration files to dist, `excalibur.d.ts` and `excalibur.amd.d.ts` - Added AMD bundle to distribution `excalibur.amd.js` - Added inlined source maps for browser debugging - Cleaned up Gruntfile and various compilation tasks
- Loading branch information
1 parent
613d04a
commit a542faf
Showing
171 changed files
with
16,028 additions
and
23,988 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
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,23 +1,18 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- '4' | ||
before_script: | ||
install: true | ||
- '6' | ||
cache: | ||
directories: | ||
- node_modules | ||
- node_cache | ||
- node_shrinkwrap | ||
- $HOME/.npm | ||
script: | ||
- npm install npm -g | ||
- npm install grunt-cli -g | ||
- npm install | ||
- grunt travis | ||
- node_modules/.bin/grunt travis | ||
after_success: | ||
- node deploy-docs.js | ||
- if [ "$TRAVIS_BRANCH" = "master" ]; then grunt bumpup dists; fi | ||
- if [ "$TRAVIS_BRANCH" = "master" ]; then node_modules/.bin/grunt bumpup dists; fi | ||
notifications: | ||
slack: | ||
secure: aQXFk2/MxX5eR2JM90xWAA9YX03QArY1ejUmnP/NkFHbB4zzKZblACjEeDTDTDCThZpXhrganX2nDWrWFrrXbOG28wKrRhEZSULPAgyiWGpfkMoT44fKmgh+eZ5C/isMF2eeQCrYo3EQCMxfCKxNaBhyLc+jr/Sm232zU2LaXo8= |
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
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
Oops, something went wrong.