-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Explore using Jake instead of Rake #199
Comments
just to mention some benefits:
|
What about grunt? |
yes. grunt didn't exist / wasn't well known when this issue was created 2 years ago. |
I so badly want to close these issues from 2 years ago. I agree that there's no need for a Ruby dependency. Can I port the Rake stuff to grunt so we can close this? =D |
do it |
Grunt is becoming the standard for JS projects. @btford have you started work on this yet? If not I'm happy to. We should probably target grunt@0.4.x that's coming out soon. |
@GEDDesign, nope, it's been on my backlog forever, but I have not yet gotten started. Be my guest! It'd be awesome to finally get rid of that Ruby dependency. |
on it |
+100, having Grunt.js build for AngularJS would be awesome. It should really lower the entry barrier for people wanting to contribute to angular. |
I'm just about done with this, and have one question: how set are we on using closure compiler? I can easily make it use uglify (using grunt's built-in minify task) and we'd drop the Ruby and Java dependencies. That alright? |
@GEDDesign Excellent work! And thank you for your suggestion during the Q&A; it certainly got the job done! My hesitation to use it was because I'm always looking for the "best" way to do something, especially when giving advice to others. Those $$ properties are typically considered "private" and subject to change without much notice, so method may not work in the future. |
I've fixed the few things preventing the |
Migrates the Angular project from Rake to Grunt. Benefits: - Drops Ruby dependency - Lowers barrier to entry for contributions from JavaScript ninjas - Simplifies the Angular project setup and build process - Adopts industry-standard tools specific to JavaScript projects - Support building angular.js on Windows platform (really?!? why?!?) BREAKING CHANGE: Rake is completely replaced by Grunt. Below are the deprecated Rake tasks and their Grunt equivalents: rake --> grunt rake package --> grunt package rake init --> N/A rake clean --> grunt clean rake concat_scenario --> grunt build:scenario rake concat --> grunt build rake concat_scenario --> grunt build:scenario rake minify --> grunt minify rake version --> grunt write:version rake docs --> grunt docs rake webserver --> grunt webserver rake test --> grunt test rake test:unit --> grunt test:unit rake test:<jqlite|jquery|modules|e2e> --> grunt test:<jqlite|jquery|modules|end2end|e2e> rake test[Firefox+Safari] --> grunt test --browsers Firefox,Safari rake test[Safari] --> grunt test --browsers Safari rake autotest --> grunt autotest NOTES: * For convenience grunt test:e2e starts a webserver for you, while grunt test:end2end doesn't. Use grunt test:end2end if you already have the webserver running. * Removes duplicate entry for Describe.js in the angularScenario section of angularFiles.js * Updates docs/src/gen-docs.js to use #done intead of the deprecated #end * Uses grunt-contrib-connect instead of lib/nodeserver (removed) * Removes nodeserver.sh, travis now uses grunt webserver * Built and minified files are identical to Rake's output, with the exception of one less character for git revisions (using --short) and a couple minor whitespace differences Closes #199 Conflicts: Rakefile
http://howtonode.org/intro-to-jake
The text was updated successfully, but these errors were encountered: