From 903ad9ddd67be58d632777bb25ead2426d167911 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:46:11 -0400 Subject: [PATCH] chore: version 1.4.0-rc.1 --- ponyracer/.angular-cli.json | 9 ++++++--- ponyracer/package.json | 6 +++--- ponyracer/src/app/app.component.html | 8 ++++---- ponyracer/src/main.ts | 3 ++- ponyracer/src/polyfills.ts | 2 +- ponyracer/tslint.json | 2 -- 6 files changed, 16 insertions(+), 14 deletions(-) diff --git a/ponyracer/.angular-cli.json b/ponyracer/.angular-cli.json index 0035b1618..3cf066277 100644 --- a/ponyracer/.angular-cli.json +++ b/ponyracer/.angular-cli.json @@ -36,13 +36,16 @@ }, "lint": [ { - "project": "src/tsconfig.app.json" + "project": "src/tsconfig.app.json", + "exclude": "**/node_modules/**" }, { - "project": "src/tsconfig.spec.json" + "project": "src/tsconfig.spec.json", + "exclude": "**/node_modules/**" }, { - "project": "e2e/tsconfig.e2e.json" + "project": "e2e/tsconfig.e2e.json", + "exclude": "**/node_modules/**" } ], "test": { diff --git a/ponyracer/package.json b/ponyracer/package.json index 06a5c06dc..b7d1cd0ee 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,13 +26,13 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.4.0-beta.2", + "@angular/cli": "1.4.0-rc.1", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", "@types/jasminewd2": "~2.0.2", "@types/node": "~6.0.60", - "codelyzer": "~3.1.1", + "codelyzer": "~3.2.0", "jasmine-core": "~2.6.2", "jasmine-spec-reporter": "~4.1.0", "karma": "~1.7.0", @@ -43,7 +43,7 @@ "karma-jasmine-html-reporter": "^0.2.2", "protractor": "~5.1.2", "ts-node": "~3.2.0", - "tslint": "~5.3.2", + "tslint": "~5.7.0", "typescript": "~2.3.3" } } diff --git a/ponyracer/src/app/app.component.html b/ponyracer/src/app/app.component.html index 230f4edc0..46d517b68 100644 --- a/ponyracer/src/app/app.component.html +++ b/ponyracer/src/app/app.component.html @@ -3,18 +3,18 @@

Welcome to {{title}}!

- +

Here are some links to help you start:

diff --git a/ponyracer/src/main.ts b/ponyracer/src/main.ts index a9ca1caf8..91ec6da5f 100644 --- a/ponyracer/src/main.ts +++ b/ponyracer/src/main.ts @@ -8,4 +8,5 @@ if (environment.production) { enableProdMode(); } -platformBrowserDynamic().bootstrapModule(AppModule); +platformBrowserDynamic().bootstrapModule(AppModule) + .catch(err => console.log(err)); diff --git a/ponyracer/src/polyfills.ts b/ponyracer/src/polyfills.ts index 7831e97b7..581aadfea 100644 --- a/ponyracer/src/polyfills.ts +++ b/ponyracer/src/polyfills.ts @@ -43,7 +43,7 @@ import 'core-js/es7/reflect'; /** - * Required to support Web Animations `@angular/animation`. + * Required to support Web Animations `@angular/platform-browser/animations`. * Needed for: All but Chrome, Firefox and Opera. http://caniuse.com/#feat=web-animation **/ // import 'web-animations-js'; // Run `npm install --save web-animations-js`. diff --git a/ponyracer/tslint.json b/ponyracer/tslint.json index 0db5751c7..b6e591b2b 100644 --- a/ponyracer/tslint.json +++ b/ponyracer/tslint.json @@ -135,8 +135,6 @@ "use-pipe-transform-interface": true, "component-class-suffix": true, "directive-class-suffix": true, - "no-access-missing-member": true, - "templates-use-public": true, "invoke-injectable": true } }