Skip to content

Commit 6d0ecff

Browse files
committed
8d2b8db chore(build): let our docker build run as root
1 parent 6e322a4 commit 6d0ecff

1,941 files changed

Lines changed: 446172 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
.DS_STORE
2+
3+
# Don’t commit the following directories created by pub.
4+
packages
5+
pubspec.lock
6+
.pub
7+
.packages
8+
9+
/dist/
10+
.buildlog
11+
node_modules
12+
bower_components
13+
14+
# Or broccoli working directory
15+
tmp
16+
17+
# Or the files created by dart2js.
18+
*.dart.js
19+
*.dart.precompiled.js
20+
*.js_
21+
*.js.deps
22+
*.js.map
23+
24+
# Or type definitions we mirror from github
25+
# (NB: these lines are removed in publish-build-artifacts.sh)
26+
27+
# Include when developing application packages.
28+
pubspec.lock
29+
.c9
30+
.idea/
31+
.settings/
32+
*.swo
33+
modules/.settings
34+
.vscode
35+
modules/.vscode
36+
37+
# Don't check in secret files
38+
*secret.js
39+
40+
# Ignore npm debug log
41+
npm-debug.log
42+
43+
/docs/bower_components/
44+
45+
# build-analytics
46+
.build-analytics
47+
48+
# built dart payload tests
49+
/modules_dart/payload/**/build

BUILD_INFO

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Wed Mar 9 18:02:41 UTC 2016
2+
8d2b8db738314f4f3e3f583b0f4c1c0956ed188b

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License
2+
3+
Copyright (c) 2014-2016 Google, Inc. http://angular.io
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Angular2
2+
=========
3+
4+
The sources for this package are in the main [Angular2](https://github.com/angular/angular) repo. Please file issues and pull requests against that repo. This is the repository for the upcoming 2.0 version. If you're looking for the current official version of Angular you should go to [angular/angular.js](https://github.com/angular/angular.js)
5+
6+
This package contains different sources for different users:
7+
8+
1. The files located in the root folder can be consumed using CommonJS.
9+
2. The files under `/es6` are es6 compatible files that can be transpiled to
10+
es5 using any transpiler. This contains:
11+
* `dev/`: a development version that includes runtime type assertions
12+
* `prod/`: a production version that does not include runtime type assertions
13+
3. The files under `/ts` are the TypeScript source files.
14+
15+
License: Apache MIT 2.0

animate.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export { Animation } from './src/animate/animation';
2+
export { AnimationBuilder } from './src/animate/animation_builder';
3+
export { BrowserDetails } from './src/animate/browser_details';
4+
export { CssAnimationBuilder } from './src/animate/css_animation_builder';
5+
export { CssAnimationOptions } from './src/animate/css_animation_options';

animate.js

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

animate/testing.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from 'angular2/src/mock/animation_builder_mock';

animate/testing.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bootstrap.d.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/**
2+
* See {@link bootstrap} for more information.
3+
* @deprecated
4+
*/
5+
export { bootstrap } from 'angular2/platform/browser';
6+
export { AngularEntrypoint } from 'angular2/src/core/angular_entrypoint';

bootstrap.js

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)