Igor Minar
99408d0445
test: add workaround to cli-hello-world payload-size test ( #22808 )
...
See https://github.com/angular/devkit/pull/524
PR Close #22808
2018-03-18 09:33:51 -07:00
Zhicheng Wang
e0fc873240
fix: minor fix and auto translate based on previous result
2018-03-18 07:44:33 +08:00
Miško Hevery
f258ec67bf
docs(ivy): update status of ivy ( #22834 )
...
PR Close #22834
2018-03-16 22:20:21 -07:00
Rob Wormald
5d82d8da6d
fix(elements): fix elements test bootstrap ( #22839 )
...
PR Close #22839
2018-03-16 22:19:50 -07:00
Alex Rickabaugh
6ef9f2278f
feat(ivy): @NgModule -> ngInjectorDef compilation ( #22458 )
...
This adds compilation of @NgModule providers and imports into
ngInjectorDef statements in generated code. All @NgModule annotations
will be compiled and the @NgModule decorators removed from the
resultant js output.
All @Injectables will also be compiled in Ivy mode, and the decorator
removed.
PR Close #22458
2018-03-16 12:57:11 -07:00
Andrew Seguin
688096b7a3
feat(elements): remove attribute/input from config ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
2e450f6fda
feat(elements): update package.json with latest ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
fe21437232
feat(elements): fix payload size ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
cf3ff7d219
feat(elements): another polyfill solution ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
d72f44556d
feat(elements): rebase ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
0b45dfac29
feat(elements): fix lint ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
167fdf745c
feat(elements): rename API to createCustomElement ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
39a12d2c3d
feat(elements): make bazel happy ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
87f60bccfd
feat(elements): injector create ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
46efd4b938
feat(elements): George's comments ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
19368085aa
feat(elements): provide type, not factory; remove config need ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
d2be675acc
feat(elements): add tests for component factory strategy ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
44f637a88b
feat(elements): fix test ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
863aff1a77
feat(elements): add polyfill for elements es5 shim ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
400460cc93
feat(aio): update payload size ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
4d506acba0
feat(aio): add hack, remove me ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
7c9b411777
feat(aio): migrate embedded comp to elements ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Andrew Seguin
22b96b9690
feat(elements): add support for creating custom elements ( #22413 )
...
PR Close #22413
2018-03-16 12:39:07 -07:00
Chuck Jazdzewski
cedc04c320
docs(ivy): document project status ( #22751 )
...
Moves the status reporting from the issue #21706 to a file that
can be updated as changes are being made. This addresses one of the
comments on the issue and allows better tracking of updates to this
status and changes made.
PR Close #22751
2018-03-16 11:27:15 -07:00
Kara Erickson
bafdad9083
fix(ivy): cache local names and support multiple locals with same value ( #22807 )
...
PR Close #22807
2018-03-16 11:26:38 -07:00
Kara Erickson
9220521149
test(ivy): correct export tests and add query test ( #22807 )
...
PR Close #22807
2018-03-16 11:26:38 -07:00
Zhicheng Wang
ac312e2f9a
fix: update the homepage of Element Angular
2018-03-16 12:20:59 +08:00
Jeremy Elbourn
b149424b11
build(bazel): make ng_package auto generate package.json for secondary entry-points ( #22806 )
...
PR Close #22806
2018-03-15 21:18:27 -07:00
Oussama Ben Brahim
269c3a1908
build(compiler-cli): fix tsconfig.json circularity issue ( #22722 )
...
Fixes #22721
PR Close #22722
2018-03-15 21:18:07 -07:00
Alex Eagle
f9247e4b2e
build: enable importHelpers in tsconfig ( #22812 )
...
This is the primary tsconfig file used for Bazel builds.
Previously, we enabled this option only for releases.
PR Close #22812
2018-03-15 21:16:03 -07:00
Igor Minar
44de10e2db
feat: mark angular packages as side-effect free ( #22785 )
...
This flag is picked up by webpack v4 and used for more agressive optimizations.
Our code is already side-effect free, because that's what we needed for build-optimizer to work.
PR Close #22785
2018-03-15 14:52:40 -07:00
Victor Berchet
0ebd577db4
refactor(compiler): Drop support for the deprecated <template>
. Use <ng-template>
instead ( #22783 )
...
BREAKING CHANGE:
The `<template>` tag was deprecated in Angular v4 to avoid collisions (i.e. when
using Web Components).
This commit removes support for `<template>`. `<ng-template>` should be used
instead.
BEFORE:
<!-- html template -->
<template>some template content</template>
# tsconfig.json
{
# ...
"angularCompilerOptions": {
# ...
# This option is no more supported and will have no effect
"enableLegacyTemplate": [true|false]
}
}
AFTER:
<!-- html template -->
<ng-template>some template content</ng-template>
PR Close #22783
2018-03-15 14:52:22 -07:00
Kara Erickson
4e6ac185e5
refactor(ivy): double size of DI bloom filter ( #22775 )
...
PR Close #22775
2018-03-15 14:49:39 -07:00
Kara Erickson
e55bf8fa79
refactor(ivy): access component def through tData ( #22771 )
...
PR Close #22771
2018-03-15 14:49:23 -07:00
Olivier Combe
3b167be069
feat(compiler): support for singleline, multiline & jsdoc comments ( #22715 )
...
PR Close #22715
2018-03-15 14:48:53 -07:00
Judy Bogart
02e6ac2117
docs: incorporate suggestions and corrections from gkalpak ( #21569 )
...
PR Close #21569
2018-03-15 14:48:35 -07:00
Judy Bogart
04ca77e38e
docs(aio): update architecture section ( #21569 )
...
PR Close #21569
2018-03-15 14:48:35 -07:00
Igor Minar
a011654c71
build: update to tsickle@0.27.2 ( #22789 )
...
PR Close #22789
2018-03-15 11:38:49 -07:00
Alex Eagle
88b3198c80
feat(bazel): change ng_package rule to APF v6 ( #22782 )
...
Angular Package Format v6 stops bundling files in the esm5 and esm2015
directories, now that Webpack 4 can tree-shake per-file.
Adds some missing files like package.json to make packages closer to
what we publish today.
Refactor ng_package to be a type of npm_package and re-use the packaging
action from that rule.
PR Close #22782
2018-03-15 11:38:31 -07:00
Chuck Jazdzewski
6e5e819e80
fix(compiler-cli): emit correct css string escape sequences ( #22776 )
...
Works around an issue with TypeScript 2.6 and 2.7 that causes
the tranformer emit to emit incorrect escapes for css string
literals.
Fixes : #22774
PR Close #22776
2018-03-15 11:37:50 -07:00
Pete Bacon Darwin
19e6b8dad5
build(aio): fix addNotYetDocumentedProperty
processor ( #22770 )
...
It was running too late and so was being confused by the
description being split into `shortDescription` and `description`
properties.
Closes #22748
PR Close #22770
2018-03-15 11:37:31 -07:00
Hans Larsen
f256c02b5e
build: fix build.sh for package group and add a test ( #22638 )
...
PR Close #22638
2018-03-15 11:34:46 -07:00
Zhicheng Wang
00cac11c4f
fix: 把所有 project 翻译为项目而不是工程
2018-03-15 17:12:36 +08:00
Zhicheng Wang
95b04faeff
fix: 翻译完了TS配置和发布的剩余部分
2018-03-15 17:10:51 +08:00
Zhicheng Wang
8a711cba59
refactor: 提供模糊匹配的功能(未完成)
2018-03-15 16:40:11 +08:00
Zhicheng Wang
18ac616385
fix: 修改了《环境准备与部署》中剩下的部分
2018-03-15 16:15:18 +08:00
Zhicheng Wang
dd5a7861cb
fix: 翻译了《风格指南》中剩余的部分
2018-03-15 16:08:29 +08:00
Zhicheng Wang
e45599eac1
fix: 对《测试》进行微调
2018-03-15 15:57:16 +08:00
Zhicheng Wang
cae70fab87
fix: 翻译完了《测试》的剩余部分
2018-03-15 15:48:26 +08:00
Zhicheng Wang
6d5cfd568b
fix: 翻译了《测试》的一部分
2018-03-15 13:04:10 +08:00