Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.

Commit bf9df6e

Browse files
committed
chore(rebase): Rebase latest
1 parent 985fd01 commit bf9df6e

File tree

319 files changed

+9181
-5311
lines changed

Some content is hidden

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

319 files changed

+9181
-5311
lines changed

gulpfile.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ var LIVE_EXAMPLES_PATH = path.join(RESOURCES_PATH, 'live-examples');
4646
var STYLES_SOURCE_PATH = path.join(TOOLS_PATH, 'styles-builder/less');
4747

4848
var docShredder = require(path.resolve(TOOLS_PATH, 'doc-shredder/doc-shredder'));
49-
var ExampleZipper = require(path.resolve(TOOLS_PATH, 'example-zipper/exampleZipper'));
49+
var exampleZipper = require(path.resolve(TOOLS_PATH, '_example-zipper/exampleZipper'));
5050
var regularPlunker = require(path.resolve(TOOLS_PATH, 'plunker-builder/regularPlunker'));
5151
var embeddedPlunker = require(path.resolve(TOOLS_PATH, 'plunker-builder/embeddedPlunker'));
5252
var fsUtils = require(path.resolve(TOOLS_PATH, 'fs-utils/fsUtils'));
@@ -86,7 +86,6 @@ var _excludeMatchers = _excludePatterns.map(function(excludePattern){
8686
var _exampleBoilerplateFiles = [
8787
'src/styles.css',
8888
'src/systemjs.config.js',
89-
'src/systemjs-angular-loader.js',
9089
'src/tsconfig.json',
9190
'bs-config.json',
9291
'bs-config.e2e.json',
@@ -573,7 +572,9 @@ gulp.task('build-and-serve', ['build-docs'], function (cb) {
573572
watchAndSync({localFiles: true}, cb);
574573
});
575574

576-
gulp.task('build-docs', ['build-devguide-docs', 'build-api-docs', 'build-plunkers', '_zip-examples']);
575+
gulp.task('build-docs', ['build-devguide-docs', 'build-api-docs', 'build-plunkers']);
576+
// Stop zipping examples Feb 28, 2016
577+
//gulp.task('build-docs', ['build-devguide-docs', 'build-api-docs', 'build-plunkers', '_zip-examples']);
577578

578579
gulp.task('build-api-docs', ['build-js-api-docs', 'build-ts-api-docs']);
579580

@@ -786,8 +787,8 @@ gulp.task('_shred-clean-api', function(cb) {
786787
});
787788

788789
gulp.task('_zip-examples', function() {
789-
new ExampleZipper(_devguideShredOptions.examplesDir, _devguideShredOptions.zipDir);
790-
// exampleZipper.zipExamples(_apiShredOptions.examplesDir, _apiShredOptions.zipDir);
790+
exampleZipper.zipExamples(_devguideShredOptions.examplesDir, _devguideShredOptions.zipDir);
791+
exampleZipper.zipExamples(_apiShredOptions.examplesDir, _apiShredOptions.zipDir);
791792
});
792793

793794

public/_data.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
"autoformat": "true"
1616
},
1717

18+
"news": {
19+
"title": "News"
20+
},
21+
1822
"events": {
1923
"title": "Events",
2024
"subtitle": "Where we'll be presenting"

public/_includes/_footer.jade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ div(class="main-footer" data-swiftype-index="false")
4141
ul.text-body
4242
li <a href="/events.html">Events</a>
4343
li <a href="http://www.meetup.com/topics/angularjs/">Meetups</a>
44-
li <a href="https://twitter.com/angular"> Twitter</a>
44+
li <a href="https://twitter.com/angularjs"> Twitter</a>
4545
li <a href="https://github.com/angular/angular"> GitHub</a>
4646
li <a href="/contribute.html"> Contribute</a>
4747

public/_includes/_main-nav.jade

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ nav(data-swiftype-index="false" class="main-nav l-pinned-top l-layer-5", scroll-
1010
li.l-left <a class="main-nav-button" href="/features.html" md-button>Features</a>
1111
li.l-left <a class="main-nav-button" href="/docs/#{language}/latest/" md-button>Docs</a>
1212
li.l-left <a class="main-nav-button" href="/events.html" md-button>Events</a>
13+
li.l-left <a class="main-nav-button" href="/news.html" md-button>News</a>
1314
li.l-right <a class="main-nav-button" href="/docs/ts/latest/quickstart.html" md-button>Get Started</a>

public/docs/_examples/.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# _boilerplate files
22
!_boilerplate/*
33
*/*/src/styles.css
4-
*/*/src/systemjs-angular-loader.js
54
*/*/src/systemjs.config.js
65
*/*/src/tsconfig.json
76
*/*/bs-config.e2e.json

public/docs/_examples/_boilerplate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"license": "MIT",
3939
"dependencies": {},
4040
"devDependencies": {
41-
"angular-cli": "^1.0.0-rc.0"
41+
"angular-cli": "^1.0.0-beta.26"
4242
},
4343
"repository": {}
4444
}

public/docs/_examples/_boilerplate/src/systemjs-angular-loader.js

Lines changed: 0 additions & 43 deletions
This file was deleted.

public/docs/_examples/_boilerplate/src/systemjs.config.js

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// map tells the System loader where to look for things
1212
map: {
1313
// our app is within the app folder
14-
'app': 'app',
14+
app: 'app',
1515

1616
// angular bundles
1717
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
@@ -32,12 +32,7 @@
3232
packages: {
3333
app: {
3434
main: './main.js',
35-
defaultExtension: 'js',
36-
meta: {
37-
'./*.js': {
38-
loader: 'systemjs-angular-loader.js'
39-
}
40-
}
35+
defaultExtension: 'js'
4136
},
4237
rxjs: {
4338
defaultExtension: 'js'

public/docs/_examples/_boilerplate/src/systemjs.config.web.build.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,8 @@
3434
},
3535
// map tells the System loader where to look for things
3636
map: {
37-
'ng-loader': './systemjs-angular-loader.js',
3837
// our app is within the app folder
39-
'app': 'app',
38+
app: 'app',
4039

4140
// angular bundles
4241
'@angular/core': 'ng:core-builds/master/bundles/core.umd.js',
@@ -72,12 +71,7 @@
7271
packages: {
7372
app: {
7473
main: './main.ts',
75-
defaultExtension: 'ts',
76-
meta: {
77-
'./*.ts': {
78-
loader: 'ng-loader'
79-
}
80-
}
74+
defaultExtension: 'ts'
8175
},
8276
rxjs: {
8377
defaultExtension: 'js'

public/docs/_examples/_boilerplate/src/systemjs.config.web.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,8 @@
3131
},
3232
// map tells the System loader where to look for things
3333
map: {
34-
'ng-loader': './systemjs-angular-loader.js',
3534
// our app is within the app folder
36-
'app': 'app',
35+
app: 'app',
3736

3837
// angular bundles
3938
'@angular/core': 'npm:@angular/core/bundles/core.umd.js',
@@ -59,12 +58,7 @@
5958
packages: {
6059
app: {
6160
main: './main.ts',
62-
defaultExtension: 'ts',
63-
meta: {
64-
'./*.ts': {
65-
loader: 'ng-loader'
66-
}
67-
}
61+
defaultExtension: 'ts'
6862
},
6963
rxjs: {
7064
defaultExtension: 'js'

0 commit comments

Comments
 (0)