This project is mirrored from https://github.com/angular/angular.git.
Pull mirroring updated .
- May 08, 2015
-
-
Rado Kirov authored
-
Caitlin Potter authored
Special regexp tokens were allowed unchanged previously, which incorrectly broke the include/exclude behaviour. Now, they're escaped first. Closes #1721 Closes #1752
-
Rado Kirov authored
-
Jeremy Elbourn authored
-
PatrickJS authored
Closes #1688
-
Alex Eagle authored
The prior version allowed for an older clang-format binary which has bugs
-
Alex Eagle authored
Also, our package.json was out-of-sync with npm-shrinkwrap.json; see https://github.com/angular/angular/issues/1737 This includes a fix for the shrinkwrapping of ts2dart; see https://github.com/angular/ts2dart/issues/138
-
Jeremy Elbourn authored
regex.
-
Caitlin Potter authored
Closes #1719
-
Alex Eagle authored
By default, gulp-typescript currently depends on typescript 1.4, which doesn't work for us. For example, it doesn't allow `let` when emitting ES5, along with lots of other errors. It so happens that npm sometimes makes this work, as seen by the warning ```npm WARN unmet dependency /Users/alexeagle/Projects/angular/node_modules/gulp-typescript requires typescript@'1.4.1' but will load npm WARN unmet dependency /Users/alexeagle/Projects/angular/node_modules/typescript, npm WARN unmet dependency which is version 1.5.0``` but when we update our node_modules in a certain way, we lose this setup and it breaks. We should be explicit about using a different version of typescript than gulp-typescript depends on.
-
Misko Hevery authored
-
Jacob MacDonald authored
-
- May 07, 2015
-
-
Peter Bacon Darwin authored
-
Peter Bacon Darwin authored
-
Peter Bacon Darwin authored
-
vsavkin authored
-
vsavkin authored
-
Kevin Moore authored
Can revert once 1.11 is available
-
Kevin Moore authored
Allow latest analyzer version Add an upper constraint to the Dart SDK
-
Kevin Moore authored
-
Tim Blasi authored
For all files that export another library, include `DirectiveMetadata` for the exported library in that file's associated `ng_meta.json` file.
-
Alex Eagle authored
We need to pick up some bugfixes for decorator emit. This still has our patch to make Error a class.
-
Alex Wolfe authored
-
Alex Wolfe authored
-
Alex Wolfe authored
-
Julie Ralph authored
Custom karma preprocessors are no longer being used after 1676 and 1597
-
Rado Kirov authored
The bug appears when there are only type annotations without parameter annotations.
-
Tim Blasi authored
Update `TemplateCompiler` transform step to use abstractions used by the render `Compiler`. For example, template code is now loaded via an instance of `TemplateLoader` and external resources are fetched via an instance of `XHR`.
-
Tobias Bosch authored
Part of #1675 Closes #1705
-
keertip authored
initial commit for the dart analyzer task
-
Tobias Bosch authored
Part of #1675 Closes #1702
-
- May 06, 2015
-
-
Igor Minar authored
previously there was a chance of race conditions that could sporadically fail the build. additionally runing a task via gulp.start or runSequence always reruns its dependencies, which meant that we were blowing away the build.tools build and rebuilding everything from scratch even during the interactive/watch mode. This meant that the build pipeline cache was destroyed on every change and we never got the benefit of incremental compilation
-
Igor Minar authored
-
Igor Minar authored
This introduces private !build.js.cjs task that is to be executed only from other public tasks.
-
Igor Minar authored
-
Igor Minar authored
tree-differ: - export both TreeDiffer and DiffResult interface diffing-broccoli-plugin: - factory class for wrapping DiffingBroccoliPlugins and turning them into BroccoliTrees broccoli-dest-copy: - refactor into DiffingBroccoliPlugin broccoli-traceur: - refactor into DiffingBroccoliPlugin
-
Igor Minar authored
-
Igor Minar authored
This way when gulp prints out that it's running build/clean.tools it really means that it's cleaning up the build directory.
-
Julie Ralph authored
Previously, karma used a custom preprocessor. Instead, have karma run built dart from the `dist` folder and use gulp and broccoli to watch for changes.
-
Rado Kirov authored
Using string1 === string2 translates to identical(string1, string2) in dart, which is incorrect as it is possilbe for dart strings to have different reference.
-