aboutsummaryrefslogtreecommitdiffstats
path: root/lib
AgeCommit message (Collapse)Author
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-28chore: set up Sauce Labs with TravisVojta Jina
This should not affect the Jenkins build at all. Now, the Travis build uses Chrome on Sauce Labs, which in theory gives us opportunity to use any browser/platform that Sauce Labs offers.
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): setup bower as the package manager for the docs pagesMatias Niemelä
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-29feat(ngdocs): support for HTML table generation from docs codeMatias Niemelä
2013-04-16fix(Grunt): also remove \r chars when joining filesPete Bacon Darwin
2013-04-03chore(revert): Revert accidental change to showdownMisko Hevery
Offending SHA: 0b6f1ce5f89f47f9302ff1e8cd8f4b92f837c413
2013-04-02feat(ngAnimate): add support for animationMisko Hevery
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
2013-02-23chore(nodeserver): fix log message for 301 responseSteven Davidson
2012-11-26chore(jquery): upgrade to jquery 1.8.2Igor Minar
2012-10-18chore(jasmine): remove Jasmine from our repoIgor Minar
it's bundled with Testacular, so we don't need it here
2012-10-18chore(jstd): remove JsTestDriver from our repoIgor Minar
Testacular FTW!
2012-09-16chore(): remove unused filesIgor Minar
2012-09-04chore(docs): don't rewrite colons in doc filenamesIgor Minar
2012-08-24chore(docs): use GAE and Google CDN for docsIgor Minar
Short summary: if you use local node server everything should work as before, if you use GAE, everything should work now as well, but we pull assets from CDN. - GAE doesn't support ':' in filenames, so I had to replace it with '_' but only in the filename, all servers were reconfigured to rewrite the urls from : to _ when doing file lookup - We now pull angular assets from google CDN when deployed on GAE (locally or in production). When running on a non GAE server we pull assets from ../ directory as before - Since only certain versions of Angular are available on CDN and we want to be able to autodeploy docs, I had to pin down the Angular files to a "stable" version when running on GAE
2012-08-04chore(nodeserver): add font mime typeVojta Jina
2012-05-24fix(favicon): update to aliased iconMisko Hevery
2012-04-27chore(server.js): Add CSP supportIgor Minar
The support is disabled by default, uncomment relevant lines to enable it.
2012-04-20feat(jquery): jquery 1.7.2 supportIgor Minar
2012-01-25chore(jasmine-adapter): upgradeMisko Hevery
2012-01-19chore(jstd): upgrade JSTD to 1.3.3dIgor Minar
2012-01-17chore(jquery): make the license header closure friendlyIgor Minar
2012-01-09fix(nodeserver): add dummy favicon.ico to silence 404sIgor Minar
2011-11-30feat($http): add promise supportIgor Minar
quite messy, some tests are missing, contains an experimental jasmine DI support)
2011-11-13feat(jquery): upgrade to jQuery 1.7Dhruv Manek
no breaking changes AFAICT
2011-10-27fix(nodeserver): properly escape all, not just first charIgor Minar
2011-10-18chore(jstd adapter): switch to our version with backported fixesIgor Minar
sha of the version: da92db714142b49f9cf61db664e782bb0ccad80b
2011-10-13chore(libs): update libs (jasmine, jstd, jasmine-jstd adapter)Vojta Jina
2011-10-13fix(nodeserver): docs rewritingVojta Jina
There can be url /api which does not end with / and we want to rewrite this url as well...
2011-10-13feat(nodeserver): if index.html exists, serve it instead of directory listingVojta Jina
2011-09-26feat(docs): use html5 history api for all routing in the docs appVojta Jina
- Configure our docs app to use new $location with html5 history api! - Update simple node web server to serve index.html for all links (rewritting). - Update .htaccess file to serve index.html for all links (rewritting). - At runtime determine the base href path and attach it to the DOM. We needed the absolute URL to get all browsers to work well. - Because of the above, we also need to dynamically determine all needed js/css resources and add them to the DOM. This was needed because FF6 would eagerly fetch resources with wrong URL since the base element is added to the dom at runtime. - All content html files were moved to the partials directory, because with the new html5 urls it was impossible to tell if request for http://domain/api/angular.filter.html was an html5 url for the html filter doc page, or an xhr/appcache request for the content html file for the html filter. f
2011-09-16feat (jquery): upgrade everything to jQuery 1.6.4Igor Minar
Closes #556
2011-08-15chore(jasmine): disable 'Jasmine waiting for..' msgIgor Minar
2011-07-18chore(closure-compiler): upgrading to v20110615Igor Minar