Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bf9df6e

Browse files
committedMar 18, 2017
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

+6-5
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

+4
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"

0 commit comments

Comments
 (0)
This repository has been archived.