aboutsummaryrefslogtreecommitdiffstats
path: root/Gruntfile.js
AgeCommit message (Collapse)Author
2014-03-11chore(build): refactor build version informationPeter Bacon Darwin
2014-02-22chore(docs-app): re-activate docs-app test tasksPeter Bacon Darwin
Currently there is only a minimal test spec in place. But this will now be run as part of the test tasks.
2014-02-21chore(travis): reorganize protractor configs to group by spec instead of by ↵Julie
browser Use the multiConfiguration ability of Protractor to start tests on multiple browsers from the same travis cell. Group tests by type (jquery, jqlite, or docs tests) instead of by browser. Turn on tests for jQuery.
2014-02-16chore(doc-gen): new docsPeter Bacon Darwin
chore(doc-gen): implement dgeni
2014-02-07refactor(testing): split travis end to end tests into separate jobs for ↵Julie
jquery and jqlite Closes #6159
2014-02-06chore(travis): remove double bower install to test if it's still neededIgor Minar
We did this due to travis-ci/travis-ci#1293 but since it's possible that this hack is not needed, I'm removing it. If it turns out that we do need it still then we should ping the travis issue and revert this commit
2014-02-05refactor(testing): run end to end tests on separate browsers in parallelJulie
2014-02-05chore(testing): run end to end tests on firefox and safari as well as chromeJulie
Update the Travis and Jenkins configs to run protractor tests on Safari and Firefox as well, and make the Travis tests run output XML and turn off color. Fix tests which were failing in Firefox due to clear() not working as expected. Fix tests which were failing in Safari due to SafariDriver not understanding the minus key, and disable tests which SafariDriver has no support for.
2014-02-03chore(Gruntfile.js, package.json): use load-grunt-tasks and move ↵gdi2290
grunt-contrib-jshint into devDependencies Closes #6085
2014-01-30chore(build): add jscs code style check to our buildIgor Minar
Closes #6062
2014-01-30chore(grunt): sort the grunt task load statementsIgor Minar
2014-01-28test(docs): convert example end to end doc tests from scenario runner to ↵Julie
protractor Thanks to jeffbcross, petebacondarwin, btford, jdeboer, tbosch for contributions! Closes #6023
2014-01-09feat(build): add a grunt test for running protractor tests extracted from ↵Julie
the docs
2013-12-16chore: run docs unit test only onceVojta Jina
Before we would run them twice on Travis. I don't think it should be part of ci-check task.
2013-12-13chore(build): automate cutting a release, publishing to bower and to ↵Tobias Bosch
code.angular.js
2013-12-02chore(grunt): update to latest jshint taskJames Brewer
Upgrade JSHint task from ~0.6.4 to ~0.7.2. Two useful changes: ability to set jshintrc option to use jshint's native ability for finding .jshintrc files relative to the linted files and update jshint to 2.3.0. Closes #5143
2013-11-26chore(mocks): wrap angular-mocks.js in closureDavid Mosher
Closes #5080
2013-11-05chore(grunt): add test:docsgen to ci checksPete Bacon Darwin
2013-10-24chore(grunt): add jshint to the test taskPete Bacon Darwin
It is very easy to let jshint failures slip into the master build if the jshint task is not part of the standard local grunt tasks.
2013-10-22chore(travis): run jshint task on TravisVojta Jina
2013-10-22chore(grunt): add jshint tasksPete Bacon Darwin
2013-10-22fix: don't inline css in csp mode.tigbro
Also add `angular-csp.css` to the resulting build.
2013-10-11chore(grunt): grunt-jasmine-node uses different configPete Bacon Darwin
2013-10-11chore(npm): grunt-contrib-jasmine-node changed nameJ. Tangelder
2013-09-17fix(build): get promise A+ tests to run on windowsPete Bacon Darwin
2013-08-28chore(travis): run bower install twice to make sure it doesVojta Jina
This is a work-around for Bower/Node.js issue (https://github.com/bower/bower/issues/830). We run `bower install` twice, as the probability of failing twice in a row is very low. I had to extract `bower` task out of the package, because we need to run `bower install` before building and `grunt bower` can fail, which takes down the whole process and therefore it wouldn't build.
2013-08-24chore(tests): add Promises/A+ Test Suite to the buildJames Talmage
Closes #3693
2013-08-23chore: run more browsers on Travis (IE8,IE9,IE10,Safari,FF)Vojta Jina
Also instead of running everything in parallel, there are only two parallel tasks: - e2e tests running in the background (only on Chrome) - all the unit tests running sequentially
2013-08-14chore(travis): add docgen unit tests to Travis buildVojta Jina
2013-08-14chore: fix Travis buildVojta Jina
Specify hostname/port for connect server to avoid https://github.com/joyent/libuv/issues/826
2013-08-13chore(grunt): ensure that grunt uses zip for compressionIgor Minar
2013-08-09chore(ngMobile): rename module ngTouch and file to angular-touch.jsBrian Ford
BREAKING CHANGE: since all the code in the ngMobile module is touch related, we are renaming the module to ngTouch. To migrate, please replace all references to "ngMobile" with "ngTouch" and "angular-mobile.js" to "angular-touch.js". Closes #3526
2013-08-08chore(grunt): fix up the help text for the new test commandsMatias Niemelä
Closes #3421
2013-08-08fix(grunt): ensure all dependent tasks are called for all test taskMatias Niemelä
Close #3421
2013-07-30chore(bower): write grunt task for running bowerKen Sheedlo
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-26feat(ngAnimate): complete rewrite of animationsMatias Niemelä
- ngAnimate directive is gone and was replaced with class based animations/transitions - support for triggering animations on css class additions and removals - done callback was added to all animation apis - $animation and $animator where merged into a single $animate service with api: - $animate.enter(element, parent, after, done); - $animate.leave(element, done); - $animate.move(element, parent, after, done); - $animate.addClass(element, className, done); - $animate.removeClass(element, className, done); BREAKING CHANGE: too many things changed, we'll write up a separate doc with migration instructions
2013-07-25feat(ngBindHtml, sce): combine ng-bind-html and ng-bind-html-unsafeChirayu Krishnappa
Changes: - remove ng-bind-html-unsafe - ng-bind-html is now in core - ng-bind-html is secure - supports SCE - so you can bind to an arbitrary trusted string - automatic sanitization if $sanitize is available BREAKING CHANGE: ng-html-bind-unsafe has been removed and replaced by ng-html-bind (which has been removed from ngSanitize.) ng-bind-html provides ng-html-bind-unsafe like behavior (innerHTML's the result without sanitization) when bound to the result of $sce.trustAsHtml(string). When bound to a plain string, the string is sanitized via $sanitize before being innerHTML'd. If $sanitize isn't available, it's logs an exception.
2013-07-11chore(build): add check for merge conflicts, ddescribe, and iitBrian Ford
2013-07-08chore(grunt): tweak ng-closure-runner setupPete Bacon Darwin
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-01feat(minErr): Error stripping build stepKen Sheedlo
2013-06-25chore(doc_gen): add task to run doc-gen specsPete Bacon Darwin
2013-06-07chore(Gruntfile): ensure bower command is run under nodePete Bacon Darwin
2013-06-06chore(ngdocs): setup karma-docs testing suite to test docs componentsMatias Niemelä
2013-06-06chore(ngdocs): setup bower as the package manager for the docs pagesMatias Niemelä
2013-06-06chore(grunt): add autotest:modules targetIgor Minar
2013-06-06refactor($route): pull $route and friends into angular-route.jsIgor Minar
$route, $routeParams and ngView have been pulled from core angular.js to angular-route.js/ngRoute module. This is was done to in order keep the core focused on most commonly used functionality and allow community routers to be freely used instead of $route service. There is no need to panic, angular-route will keep on being supported by the angular team. Note: I'm intentionally not fixing tutorial links. Tutorial will need bigger changes and those should be done when we update tutorial to 1.2. BREAKING CHANGE: applications that use $route will now need to load angular-route.js file and define dependency on ngRoute module. Before: ``` ... <script src="angular.js"></script> ... var myApp = angular.module('myApp', ['someOtherModule']); ... ``` After: ``` ... <script src="angular.js"></script> <script src="angular-route.js"></script> ... var myApp = angular.module('myApp', ['ngRoute', 'someOtherModule']); ... ``` Closes #2804
2013-05-23feat($swipe): Refactor swipe logic from ngSwipe to $swipe service.Braden Shepherdson
This new service is used by the ngSwipeLeft/Right directives, and by the separate ngCarousel and swipe-to-delete directives which are under development.
2013-05-20chore(ngdocs): move angular-bootstrap.js to be generated only inside the ↵Matias Niemelä
docs and remove from the build process