Igor Minar
0bdcb5c1e0
build(npm): remove `del` devDependency - use `fs-extra` instead
2016-01-22 03:25:33 +00:00
Igor Minar
625474c4e2
build(npm): update to mock-fs@3.6.0
2016-01-22 03:25:33 +00:00
Igor Minar
1cd2a6328a
build(npm): update to fs-extra@0.26.3
2016-01-22 03:25:33 +00:00
Igor Minar
d6bafe4fe3
build(npm): update to minimist@1.2.0
2016-01-22 03:25:33 +00:00
Igor Minar
6a2ef15355
build(npm): update to jasmine@2.4.1
2016-01-22 03:25:33 +00:00
Igor Minar
a8ca560503
build(npm): upgrade to broccoli@0.16.9
2016-01-22 03:25:33 +00:00
Igor Minar
ad361808ec
build(npm): upgrade to broccoli-funnel@1.0.1
2016-01-22 03:25:33 +00:00
Igor Minar
c47639f2b1
build(npm): upgrade to protractor@3.0.0
2016-01-22 03:25:33 +00:00
Igor Minar
ba90a85f7b
build(npm): downgrade to karma@0.13.15 due to RangeError bug
...
Ref https://github.com/karma-runner/karma/issues/1768
2016-01-22 03:25:33 +00:00
Igor Minar
d3b569557f
build(npm): upgrade to karma-sauce-launcher@0.3.0
2016-01-22 03:25:33 +00:00
Brian Ford
6cfc6f5bb2
build(npm): upgrade to npm v3
...
Closes #3193
2016-01-22 03:25:32 +00:00
Alex Eagle
90b3502bb8
ci(circle config): add a circle CI config
...
This only runs the JS build (no tests) as an easy place to start.
Green build on my branch: https://circleci.com/gh/alexeagle/angular/5
Note, we are just experimenting with Circle at this point...
Closes #6520
2016-01-16 00:17:15 +00:00
Uri Shaked
92dc3b91d8
doc(*): change package.json license field to MIT
...
Align the package.json license with the LICENSE file from the repo
Closes #6432
2016-01-15 17:42:43 +00:00
Vikram Subramanian
95248f46a1
build(npm): update to ts2dart@0.7.19
...
Closes #6254
2016-01-09 01:44:01 +00:00
Rado Kirov
6343f71be5
chore(release): 2.0.0-beta.1 - catamorphic-involution
2016-01-08 11:56:37 -08:00
Igor Minar
f50affaf9c
chore(release): cut 2.0.0-beta.0 - sonambulent-inauguration
2015-12-15 10:54:10 -08:00
Igor Minar
a45b27e7f9
chore(release): cut 2.0.0-alpha.54
2015-12-15 09:57:05 -08:00
Igor Minar
059e09c3be
chore(release): cut alpha.54 - rxjs bundle separation
2015-12-15 03:04:28 -08:00
Jeff Cross
321ed7d099
chore(package): update rxjs to beta.0
2015-12-14 22:08:16 -08:00
Victor Berchet
0f8e40bb42
chore(zone.js) : update to 0.5.10
...
Closes #5845
2015-12-14 21:23:18 +00:00
Igor Minar
892f9e19bc
chore(release): cut alpha.53 - no more angular2/angular2
2015-12-12 17:59:35 -08:00
vsavkin
4e5cd1e558
chore: update ts2dart to 0.7.18
...
Closes #5853
2015-12-12 19:28:13 +00:00
Igor Minar
c8d6ad2718
chore(release): cut alpha.52 - the new beginning
2015-12-10 00:48:32 -08:00
Igor Minar
7bce1477ef
chore(release): cut alpha.52 - the last release of Angular as we know it
2015-12-09 19:20:20 -08:00
Igor Minar
01ba94ba56
build(npm): update to ts2dart@0.7.17
...
resolves regression in 0.7.16
Closes #5758
2015-12-10 01:32:45 +00:00
Igor Minar
51cb7586e0
build(npm): update to typescript@1.7.3 + fix broccoli-typescript + fix src
2015-12-10 01:32:44 +00:00
Igor Minar
796eee1e6f
build(npm): update to gulp-typescript@2.10.0
2015-12-10 01:32:44 +00:00
Igor Minar
c39828f0f2
build(npm): bump ts2dart to 0.7.16
2015-12-10 01:32:44 +00:00
Jeremy Elbourn
214148d58a
chore(release): update package.json and changelog to alpha.50
2015-12-08 19:07:43 -08:00
Jeff Cross
4432cf5438
chore(package): update rxjs dependency to alpha.14
...
Closes #5722
Closes #5723
2015-12-08 18:54:43 -08:00
Jeremy Elbourn
90c67b4b11
chore(release): update package.json and changelog to alpha.49
2015-12-08 17:41:39 -08:00
Igor Minar
c1e3ea9f7f
build(npm): add es6-promise as a dependency
...
This is actually an inherited dependency that comes from zone.js.
See related issue: https://github.com/angular/zone.js/issues/212
It would be better to make this one an optionalPeerDependency but npm
currently doesn't support making peerDependencies optional.
See: https://github.com/npm/npm/issues/3066
2015-12-08 11:52:25 -08:00
Igor Minar
21542ed069
fix(npm): move es6-shim from devDependencies to dependencies
...
To be later used as a peerDependency in the generated package.json
It would be better to make this one an optionalPeerDependency but npm
currently doesn't support making peerDependencies optional.
See: https://github.com/npm/npm/issues/3066
2015-12-08 11:52:25 -08:00
Jeff Cross
c39f4c3b38
refactor(Observable): implement toPromise and fromPromise without side effects
...
BREAKING CHANGE:
toPromise is no longer an instance method of the `Observable` returned
by Angular, and fromPromise is no longer available as a static method.
The easiest way to account for this change in applications is to import
the auto-patching modules from rxjs, which will automatically add these
operators back to the Observable prototype.
```
import 'rxjs/add/operator/toPromise';
import 'rxjs/add/observable/fromPromise';
```
Closes #5542
Closes #5626
2015-12-08 18:31:02 +00:00
Rob Wormald
4b1618cb03
fix(package): relock RxJS to alpha.11
...
fixes #5643
Closes #5644
2015-12-07 15:15:22 -08:00
Jeremy Elbourn
d10224d21a
chore(release): increment version to alpha.48
2015-12-04 17:05:38 -08:00
Rob Wormald
5514dc19d9
refactor(facade): use rxjs package
...
move to new RxJS distribution.
BREAKING CHANGE:
RxJS imports now are via `rxjs` instead of `@reactivex/rxjs`
Individual operators can be imported `import 'rxjs/operators/map'`
2015-12-02 16:02:34 -08:00
Rob Wormald
a16ac84840
refactor(async): use ultralight Observable
...
Closes #5283
2015-12-02 16:02:34 -08:00
Ciro Nunes
093b7948be
chore(package.json): add range of supported node versions as engines
...
Closes #5535
2015-12-02 18:17:25 +00:00
vsavkin
909426e37d
chore: bump up version number to alpha.47
2015-12-01 11:43:33 -08:00
Pawel Kozlowski
65bdf42903
chore(bundles): add source maps to umd dev bundles
...
Source maps are in-lined to follow the same conventions as
for non-bundled files.
Closes #5511
2015-11-30 20:17:13 +00:00
Pawel Kozlowski
fa725b4512
feat(bundles): publish UMD bundles
...
Closes #5223
2015-11-25 13:16:01 -08:00
vsavkin
87d56acdaa
fix(build): fix source maps
...
Closes #5444
2015-11-24 19:33:27 +00:00
Igor Minar
41dfaf393b
build(analytics): track bundle size
...
This will send bundle sizes (before and after gzip) to Google Analytics so that we can
track bundle size over time for every bundle we produce.
Closes #5294
2015-11-16 21:42:50 +00:00
Marc Laval
63639895ad
chore(package): update karma-browserstack-launcher to 0.1.7
...
Closes #5276
2015-11-13 22:20:50 +00:00
Naomi Black
d29563fdd3
chore(changelog): update change log to alpha-46
2015-11-11 13:33:18 -08:00
vsavkin
b0009f03d5
chore(ts2dart): update ts2dart to 0.7.14
...
Closes #5167
2015-11-07 01:36:06 +00:00
Pawel Kozlowski
c6ad269f43
chore(build): remove es5build.js
...
Fixes #5030
Closes #5144
2015-11-06 18:22:57 +00:00
Marc Laval
c5693f07dc
chore(browserstack): use patched karma launcher
...
closes #5142
2015-11-06 11:11:10 +01:00
Igor Minar
bcfb0732f9
build(npm): lock systemjs at 0.18.10 due to regressions in future versions
...
otherwise in dist/js/dev/es5/benchmarks/src/naive_infinite_scroll/index.html
defaultExtension: 'js' is ignored for angular2/src/testing/benchmark_util which
results in test failures.
We'll need to investigate this. Maybe upgrading to 0.19.x will make this issue go
away...
2015-11-05 21:02:42 +00:00