Gruntfile: Restructuring.#2741
Merged
Merged
Conversation
Structure: ---------- Gruntfile.js: - configuration of basic environment; - loading files with more specific options; - loading tasks. Grunt/options/*.js: - configuration options split by target. Grunt/options/browsers.json: - browsers used as customLaunchers for karma. Grunt/plugins/*: - plugins used in/by the grunt tasks. Grunt/tasks/*: - registration of tasks. Notable changes: ---------------- Gruntfile API: - renamed "all" and "default" builds to the more clear "compat"; - new "travis" task, takes care of travis specific stuff; - new "test" task, runs all tests (including server tests); - new "default" task, runs either the "travis" or "test" task. Other changes: - built files now end up in a "build" directory (or "dist", of course); - removed server-tests.js in favour of grunt-mocha-test package; - updated the browser list (most notably: added edge); - updated .travis.yml to use updated browser list; - updated .travis.yml to use new "compat" build, instead of "default"; - moved syn karma-plugin into Grunt directory; - updated and cleaned up .gitignore; - removed no longer used packages from .package.json; - updated README.md (some parts were actuall already out of date).
aef42d9 to
0914d68
Compare
Member
|
👍 nice work! |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Structure:
Gruntfile.js:
Grunt/options/*.js:
Grunt/options/browsers.json:
Grunt/plugins/*:
Grunt/tasks/*:
Notable changes:
Gruntfile API:
Other changes:
Travis-CI tests