aboutsummaryrefslogtreecommitdiffstats
path: root/lib/grunt/utils.js
AgeCommit message (Collapse)Author
2013-07-29fix(bower): update bower usage and resourcesKen Sheedlo
Changes: - Fix our old code to use bower_components/ as the install dir - Fix the Bootstrap asset to use github.com/twbs/bootstrap (it moved) - Fail the build on Bower failure. Bower should not fail silently.
2013-07-26fix(grunt): change css wrapping to prepend styles to the top of the head tagMatias Niemelä
angular.css is used by the utils.js CSS wrap operation, but ng-hide or any other CSS styles present in angular.css cannot be overridden unless the styles appear before the stylesheet is in place. This fix allows for this to work
2013-07-25feat(minErr): Include version number in prod minErr urlsKen Sheedlo
2013-07-24docs(minErr): Build minErr doc siteKen Sheedlo
2013-07-13fix(grunt): cache version numberIgor Minar
caching the version number speeds up the build and preserves resources. this also fixed EMFILE error that now occurs on some macs.
2013-07-08chore(grunt): tweak ng-closure-runner setupPete Bacon Darwin
2013-07-03fix(grunt): Give java 2g of memoryLucas Galfasó
Give the java build process 2g of memory
2013-07-02chore(grunt-utils): remove unnecessary quotes from minerr_urlPete Bacon Darwin
The quotes were causing the minerr processing to fail on Windows
2013-07-02chore(travis): speed up the buildVojta Jina
- parallelize the tasks - cache requests (e2e tests) This reduces the time from ~18min to ~12min. It makes the output little messy. We could buffer output of each task and display it once it's fully finished, nicely. I think giving instant feedback is better.
2013-07-02chore(grunt-utils): fix java classpath on WindowsPete Bacon Darwin
2013-07-01feat(minErr): Error stripping build stepKen Sheedlo
2013-06-27chore(build): temporarily add more logging to debug flakiness on CIIgor Minar
2013-06-17feat(ngdocs): provide support for user to jump between different versions of ↵Matias Niemelä
the angularjs documentation
2013-06-14feat(Grunt): add source maps to all min filesIgor Minar
Generate source map files when build step is ran and adds source map headers to all min files. Source map url must be appended to the min file otherwise the line offsets will be off. Inspired by Ryan Seddon (PR #2858) Closes #1714
2013-06-06chore(closure-compiler): use bower to fetch closure compilerIgor Minar
this replaces the stale NPM dependency
2013-06-06chore(ngdocs): replace google closure library with a NPM moduleMatias Niemelä
2013-05-21chore(package.json): kill version.yaml in favor of package.jsonIgor Minar
all versioning info is now in package.json and that's where the build scripts read it from
2013-04-16fix(Grunt): also remove \r chars when joining filesPete Bacon Darwin
2013-04-01chore: use KarmaVojta Jina
2013-03-05chore(Grunt): switch from Rake to GruntDave Geddes
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