forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(package): introduce a catch-all package angular.
modules/angular has no implementation, but depends on all the pieces that make angular - core, di, directives, etc. It is the package that all client apps will depend on.
- Loading branch information
Showing
12 changed files
with
44 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: angular | ||
version: 2.0.0-alpha.1 | ||
environment: | ||
sdk: '>=1.4.0' | ||
dependencies: | ||
stack_trace: '1.1.1' | ||
change_detection: | ||
path: ../change_detection | ||
di: | ||
path: ../di | ||
facade: | ||
path: ../facade | ||
reflection: | ||
path: ../reflection | ||
directives: | ||
path: ../directives | ||
dev_dependencies: | ||
test_lib: | ||
path: ../test_lib | ||
guinness: ">=0.1.16 <0.2.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** | ||
* Define public API for Angular here. | ||
*/ | ||
export * from 'change_detection/change_detection'; | ||
export * from 'core/core'; | ||
export * from 'directives/directives'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,12 @@ | ||
/** | ||
* Define public API for Angular here | ||
*/ | ||
export * from './annotations/annotations'; | ||
export * from './compiler/interfaces'; | ||
export * from './annotations/template_config'; | ||
|
||
export * from './application'; | ||
|
||
export * from 'change_detection/change_detection'; | ||
|
||
export * from './compiler/compiler'; | ||
export * from './compiler/template_loader'; | ||
export * from './compiler/view'; | ||
export * from './compiler/viewport'; | ||
|
||
export * from 'core/dom/element'; | ||
export * from './dom/element'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
export * from './ng_if'; | ||
export * from './ng_non_bindable'; | ||
export * from './ng_repeat'; | ||
export * from './ng_switch'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters