diff --git a/aio/content/examples/.gitignore b/aio/content/examples/.gitignore index bb099d3b7c..75300b0bdd 100644 --- a/aio/content/examples/.gitignore +++ b/aio/content/examples/.gitignore @@ -18,6 +18,7 @@ **/src/karma.conf.js **/.angular-cli.json **/.editorconfig +**/.gitignore **/angular.json **/tsconfig.json **/bs-config.e2e.json diff --git a/aio/tools/examples/example-boilerplate.js b/aio/tools/examples/example-boilerplate.js index 0bc06e8290..b0a4723873 100644 --- a/aio/tools/examples/example-boilerplate.js +++ b/aio/tools/examples/example-boilerplate.js @@ -16,8 +16,8 @@ const BOILERPLATE_PATHS = { 'src/assets/.gitkeep', 'browserslist', 'src/favicon.ico', 'karma.conf.js', 'src/polyfills.ts', 'src/test.ts', 'tsconfig.app.json', 'tsconfig.spec.json', 'tslint.json', 'e2e/src/app.po.ts', 'e2e/protractor-puppeteer.conf.js', - 'e2e/protractor.conf.js', 'e2e/tsconfig.json', '.editorconfig', 'angular.json', 'package.json', - 'tsconfig.json', 'tslint.json' + 'e2e/protractor.conf.js', 'e2e/tsconfig.json', '.editorconfig', '.gitignore', 'angular.json', + 'package.json', 'tsconfig.json', 'tslint.json' ], systemjs: [ 'src/systemjs-angular-loader.js', 'src/systemjs.config.js', 'src/tsconfig.json', diff --git a/aio/tools/examples/example-boilerplate.spec.js b/aio/tools/examples/example-boilerplate.spec.js index db9c8d5f72..4fb314fb08 100644 --- a/aio/tools/examples/example-boilerplate.spec.js +++ b/aio/tools/examples/example-boilerplate.spec.js @@ -10,7 +10,7 @@ describe('example-boilerplate tool', () => { const sharedDir = path.resolve(__dirname, 'shared'); const sharedNodeModulesDir = path.resolve(sharedDir, 'node_modules'); const BPFiles = { - cli: 20, + cli: 21, i18n: 3, universal: 2, systemjs: 7,