From b73a187a52ebecd4fe0b499cda68c1aaf9e98669 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:10:35 -0400 Subject: [PATCH 01/29] chore: version 1.2.0-beta.0 --- ponyracer/e2e/app.e2e-spec.ts | 6 ++++-- ponyracer/package.json | 4 ++-- ponyracer/src/app/app.component.html | 2 +- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/ponyracer/e2e/app.e2e-spec.ts b/ponyracer/e2e/app.e2e-spec.ts index 605376d44..98c1d470a 100644 --- a/ponyracer/e2e/app.e2e-spec.ts +++ b/ponyracer/e2e/app.e2e-spec.ts @@ -7,8 +7,10 @@ describe('ponyracer App', () => { page = new PonyracerPage(); }); - it('should display welcome message', () => { + it('should display welcome message', done => { page.navigateTo(); - expect(page.getParagraphText()).toEqual('Welcome to app!!'); + page.getParagraphText() + .then(msg => expect(msg).toEqual('Welcome to app!!')) + .then(done, done.fail); }); }); diff --git a/ponyracer/package.json b/ponyracer/package.json index af6663828..b97a893f1 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.4" }, "devDependencies": { - "@angular/cli": "1.1.3", + "@angular/cli": "1.2.0-beta.0", "@angular/compiler-cli": "^4.0.0", "@angular/language-service": "^4.0.0", "@types/jasmine": "2.5.45", @@ -37,9 +37,9 @@ "karma": "~1.7.0", "karma-chrome-launcher": "~2.1.1", "karma-cli": "~1.0.1", - "karma-coverage-istanbul-reporter": "^1.2.1", "karma-jasmine": "~1.1.0", "karma-jasmine-html-reporter": "^0.2.2", + "karma-coverage-istanbul-reporter": "^1.2.1", "protractor": "~5.1.2", "ts-node": "~3.0.4", "tslint": "~5.3.2", diff --git a/ponyracer/src/app/app.component.html b/ponyracer/src/app/app.component.html index b41bbe4be..d0322ef6c 100644 --- a/ponyracer/src/app/app.component.html +++ b/ponyracer/src/app/app.component.html @@ -8,7 +8,7 @@

Here are some links to help you start:

diff --git a/ponyracer/src/app/app.component.spec.ts b/ponyracer/src/app/app.component.spec.ts index 9510495a2..7d2799ceb 100644 --- a/ponyracer/src/app/app.component.spec.ts +++ b/ponyracer/src/app/app.component.spec.ts @@ -27,6 +27,6 @@ describe('AppComponent', () => { const fixture = TestBed.createComponent(AppComponent); fixture.detectChanges(); const compiled = fixture.debugElement.nativeElement; - expect(compiled.querySelector('h1').textContent).toContain('Welcome to app!'); + expect(compiled.querySelector('h1').textContent).toContain('Welcome to app!!'); })); }); diff --git a/ponyracer/src/tsconfig.app.json b/ponyracer/src/tsconfig.app.json index 39ba8dbac..5e2507db5 100644 --- a/ponyracer/src/tsconfig.app.json +++ b/ponyracer/src/tsconfig.app.json @@ -2,8 +2,8 @@ "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/app", - "baseUrl": "./", "module": "es2015", + "baseUrl": "", "types": [] }, "exclude": [ diff --git a/ponyracer/src/tsconfig.spec.json b/ponyracer/src/tsconfig.spec.json index 63d89ff28..510e3f1fd 100644 --- a/ponyracer/src/tsconfig.spec.json +++ b/ponyracer/src/tsconfig.spec.json @@ -2,9 +2,9 @@ "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/spec", - "baseUrl": "./", "module": "commonjs", "target": "es5", + "baseUrl": "", "types": [ "jasmine", "node" diff --git a/ponyracer/tsconfig.json b/ponyracer/tsconfig.json index 1f9b55851..a35a8ee3a 100644 --- a/ponyracer/tsconfig.json +++ b/ponyracer/tsconfig.json @@ -2,6 +2,7 @@ "compileOnSave": false, "compilerOptions": { "outDir": "./dist/out-tsc", + "baseUrl": "src", "sourceMap": true, "declaration": false, "moduleResolution": "node", diff --git a/ponyracer/tslint.json b/ponyracer/tslint.json index 0db5751c7..dd117b387 100644 --- a/ponyracer/tslint.json +++ b/ponyracer/tslint.json @@ -31,14 +31,8 @@ "member-access": false, "member-ordering": [ true, - { - "order": [ - "static-field", - "instance-field", - "static-method", - "instance-method" - ] - } + "static-before-instance", + "variables-before-functions" ], "no-arg": true, "no-bitwise": true, @@ -86,7 +80,6 @@ ], "radix": true, "semicolon": [ - true, "always" ], "triple-equals": [ From 1e93526cde6464d4d49c19aee0d7788ad48da989 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:22:09 -0400 Subject: [PATCH 15/29] chore: version 1.3.0-beta.1 --- ponyracer/e2e/app.e2e-spec.ts | 2 +- ponyracer/e2e/tsconfig.e2e.json | 1 + ponyracer/package.json | 2 +- ponyracer/src/app/app.component.html | 2 +- ponyracer/src/app/app.component.spec.ts | 2 +- ponyracer/src/tsconfig.app.json | 2 +- ponyracer/src/tsconfig.spec.json | 2 +- ponyracer/tsconfig.json | 1 - ponyracer/tslint.json | 11 +++++++++-- 9 files changed, 16 insertions(+), 9 deletions(-) diff --git a/ponyracer/e2e/app.e2e-spec.ts b/ponyracer/e2e/app.e2e-spec.ts index 0794739de..e7ea74bb8 100644 --- a/ponyracer/e2e/app.e2e-spec.ts +++ b/ponyracer/e2e/app.e2e-spec.ts @@ -9,6 +9,6 @@ describe('ponyracer App', () => { it('should display welcome message', () => { page.navigateTo(); - expect(page.getParagraphText()).toEqual('Welcome to app!!'); + expect(page.getParagraphText()).toEqual('Welcome to app!'); }); }); diff --git a/ponyracer/e2e/tsconfig.e2e.json b/ponyracer/e2e/tsconfig.e2e.json index 39b800f78..1d9e5edf0 100644 --- a/ponyracer/e2e/tsconfig.e2e.json +++ b/ponyracer/e2e/tsconfig.e2e.json @@ -2,6 +2,7 @@ "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/e2e", + "baseUrl": "./", "module": "commonjs", "target": "es5", "types": [ diff --git a/ponyracer/package.json b/ponyracer/package.json index 0d448efb6..7fa9d9e0c 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.12" }, "devDependencies": { - "@angular/cli": "1.3.0-beta.0", + "@angular/cli": "1.3.0-beta.1", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", diff --git a/ponyracer/src/app/app.component.html b/ponyracer/src/app/app.component.html index 1a00adb0a..e27076210 100644 --- a/ponyracer/src/app/app.component.html +++ b/ponyracer/src/app/app.component.html @@ -1,7 +1,7 @@

- Welcome to {{title}}!! + Welcome to {{title}}!

diff --git a/ponyracer/src/app/app.component.spec.ts b/ponyracer/src/app/app.component.spec.ts index 7d2799ceb..9510495a2 100644 --- a/ponyracer/src/app/app.component.spec.ts +++ b/ponyracer/src/app/app.component.spec.ts @@ -27,6 +27,6 @@ describe('AppComponent', () => { const fixture = TestBed.createComponent(AppComponent); fixture.detectChanges(); const compiled = fixture.debugElement.nativeElement; - expect(compiled.querySelector('h1').textContent).toContain('Welcome to app!!'); + expect(compiled.querySelector('h1').textContent).toContain('Welcome to app!'); })); }); diff --git a/ponyracer/src/tsconfig.app.json b/ponyracer/src/tsconfig.app.json index 5e2507db5..39ba8dbac 100644 --- a/ponyracer/src/tsconfig.app.json +++ b/ponyracer/src/tsconfig.app.json @@ -2,8 +2,8 @@ "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/app", + "baseUrl": "./", "module": "es2015", - "baseUrl": "", "types": [] }, "exclude": [ diff --git a/ponyracer/src/tsconfig.spec.json b/ponyracer/src/tsconfig.spec.json index 510e3f1fd..63d89ff28 100644 --- a/ponyracer/src/tsconfig.spec.json +++ b/ponyracer/src/tsconfig.spec.json @@ -2,9 +2,9 @@ "extends": "../tsconfig.json", "compilerOptions": { "outDir": "../out-tsc/spec", + "baseUrl": "./", "module": "commonjs", "target": "es5", - "baseUrl": "", "types": [ "jasmine", "node" diff --git a/ponyracer/tsconfig.json b/ponyracer/tsconfig.json index a35a8ee3a..1f9b55851 100644 --- a/ponyracer/tsconfig.json +++ b/ponyracer/tsconfig.json @@ -2,7 +2,6 @@ "compileOnSave": false, "compilerOptions": { "outDir": "./dist/out-tsc", - "baseUrl": "src", "sourceMap": true, "declaration": false, "moduleResolution": "node", diff --git a/ponyracer/tslint.json b/ponyracer/tslint.json index dd117b387..0db5751c7 100644 --- a/ponyracer/tslint.json +++ b/ponyracer/tslint.json @@ -31,8 +31,14 @@ "member-access": false, "member-ordering": [ true, - "static-before-instance", - "variables-before-functions" + { + "order": [ + "static-field", + "instance-field", + "static-method", + "instance-method" + ] + } ], "no-arg": true, "no-bitwise": true, @@ -80,6 +86,7 @@ ], "radix": true, "semicolon": [ + true, "always" ], "triple-equals": [ From 20ef2ab5393d84fb12d20dca385706458cdc3804 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:22:45 -0400 Subject: [PATCH 16/29] chore: version 1.3.0-rc.0 --- ponyracer/.angular-cli.json | 9 ++++++--- ponyracer/karma.conf.js | 2 +- ponyracer/package.json | 8 ++++---- ponyracer/tsconfig.json | 2 +- 4 files changed, 12 insertions(+), 9 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/karma.conf.js b/ponyracer/karma.conf.js index 4d9ab9d94..af139fada 100644 --- a/ponyracer/karma.conf.js +++ b/ponyracer/karma.conf.js @@ -1,5 +1,5 @@ // Karma configuration file, see link for more information -// https://karma-runner.github.io/0.13/config/configuration-file.html +// https://karma-runner.github.io/1.0/config/configuration-file.html module.exports = function (config) { config.set({ diff --git a/ponyracer/package.json b/ponyracer/package.json index 7fa9d9e0c..9421490b5 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -22,11 +22,11 @@ "@angular/platform-browser-dynamic": "^4.2.4", "@angular/router": "^4.2.4", "core-js": "^2.4.1", - "rxjs": "^5.4.1", - "zone.js": "^0.8.12" + "rxjs": "^5.4.2", + "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.3.0-beta.1", + "@angular/cli": "1.3.0-rc.0", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", @@ -42,7 +42,7 @@ "karma-jasmine": "~1.1.0", "karma-jasmine-html-reporter": "^0.2.2", "protractor": "~5.1.2", - "ts-node": "~3.0.4", + "ts-node": "~3.2.0", "tslint": "~5.3.2", "typescript": "~2.3.3" } diff --git a/ponyracer/tsconfig.json b/ponyracer/tsconfig.json index 1f9b55851..a6c016bf3 100644 --- a/ponyracer/tsconfig.json +++ b/ponyracer/tsconfig.json @@ -12,7 +12,7 @@ "node_modules/@types" ], "lib": [ - "es2016", + "es2017", "dom" ] } From 9ec5b02c65ebac1f9d3aa3c6d3bfce97b95bd31f Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:23:20 -0400 Subject: [PATCH 17/29] chore: version 1.3.0-rc.1 --- ponyracer/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index 9421490b5..0e9235c4a 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.3.0-rc.0", + "@angular/cli": "1.3.0-rc.1", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", From e5291595a966d34b5a5421057266c3a690119c0f Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:23:54 -0400 Subject: [PATCH 18/29] chore: version 1.3.0-rc.2 --- ponyracer/package.json | 2 +- ponyracer/src/app/app.component.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index 0e9235c4a..48a230f6e 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.3.0-rc.1", + "@angular/cli": "1.3.0-rc.2", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", diff --git a/ponyracer/src/app/app.component.html b/ponyracer/src/app/app.component.html index e27076210..94e7b977c 100644 --- a/ponyracer/src/app/app.component.html +++ b/ponyracer/src/app/app.component.html @@ -14,7 +14,7 @@

Tour of Heroes

CLI Documentation
  • -

    Angular blog

    +

    Angular blog

  • From 30518621f6bbfbf30bbefc9f38be12c8e98f6a23 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:24:29 -0400 Subject: [PATCH 19/29] chore: version 1.3.0-rc.3 --- ponyracer/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index 48a230f6e..71b861ef8 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.3.0-rc.2", + "@angular/cli": "1.3.0-rc.3", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", From 41700645ae0cbd5ecb32e13b63d827dca3ba79a1 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:25:06 -0400 Subject: [PATCH 20/29] chore: version 1.3.0-rc.5 --- ponyracer/.gitignore | 1 + ponyracer/package.json | 2 +- ponyracer/src/app/app.component.html | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ponyracer/.gitignore b/ponyracer/.gitignore index 54bfd2001..6b6681430 100644 --- a/ponyracer/.gitignore +++ b/ponyracer/.gitignore @@ -32,6 +32,7 @@ npm-debug.log testem.log /typings +yarn-error.log # e2e /e2e/*.js diff --git a/ponyracer/package.json b/ponyracer/package.json index 71b861ef8..859ea946f 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.3.0-rc.3", + "@angular/cli": "1.3.0-rc.5", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", diff --git a/ponyracer/src/app/app.component.html b/ponyracer/src/app/app.component.html index 94e7b977c..230f4edc0 100644 --- a/ponyracer/src/app/app.component.html +++ b/ponyracer/src/app/app.component.html @@ -14,7 +14,7 @@

    Tour of Heroes

    CLI Documentation
  • -

    Angular blog

    +

    Angular blog

  • From 2672fe887911bc1bcff6913c553c9482fac3eb4e Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:26:12 -0400 Subject: [PATCH 21/29] chore: version 1.3.0 --- ponyracer/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index 859ea946f..625a81c48 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.3.0-rc.5", + "@angular/cli": "1.3.0", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", From 18b949f4d728b3cbc797a81c639194d26058ee6f Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:26:42 -0400 Subject: [PATCH 22/29] chore: version 1.3.1 --- ponyracer/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index 625a81c48..073280f24 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.3.0", + "@angular/cli": "1.3.1", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", From 776aa4823a618a22fe6c94ef72465f92247e7fda Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:27:15 -0400 Subject: [PATCH 23/29] chore: version 1.3.2 --- ponyracer/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index 073280f24..63674a203 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.3.1", + "@angular/cli": "1.3.2", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", From 230b318b07f7fd37eb2e594120a029d5d0e810db Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:27:49 -0400 Subject: [PATCH 24/29] chore: version 1.4.0-beta.0 --- ponyracer/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index 63674a203..9c1f15191 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.3.2", + "@angular/cli": "1.4.0-beta.0", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", From 757fcfff7ee9a71c9eeed90d42932edf53b64acf Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:28:23 -0400 Subject: [PATCH 25/29] chore: version 1.4.0-beta.1 --- ponyracer/.angular-cli.json | 9 +++------ ponyracer/.gitignore | 1 - ponyracer/package.json | 2 +- ponyracer/src/app/app.component.spec.ts | 5 ----- 4 files changed, 4 insertions(+), 13 deletions(-) diff --git a/ponyracer/.angular-cli.json b/ponyracer/.angular-cli.json index 3cf066277..0035b1618 100644 --- a/ponyracer/.angular-cli.json +++ b/ponyracer/.angular-cli.json @@ -36,16 +36,13 @@ }, "lint": [ { - "project": "src/tsconfig.app.json", - "exclude": "**/node_modules/**" + "project": "src/tsconfig.app.json" }, { - "project": "src/tsconfig.spec.json", - "exclude": "**/node_modules/**" + "project": "src/tsconfig.spec.json" }, { - "project": "e2e/tsconfig.e2e.json", - "exclude": "**/node_modules/**" + "project": "e2e/tsconfig.e2e.json" } ], "test": { diff --git a/ponyracer/.gitignore b/ponyracer/.gitignore index 6b6681430..54bfd2001 100644 --- a/ponyracer/.gitignore +++ b/ponyracer/.gitignore @@ -32,7 +32,6 @@ npm-debug.log testem.log /typings -yarn-error.log # e2e /e2e/*.js diff --git a/ponyracer/package.json b/ponyracer/package.json index 9c1f15191..e78763778 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.4.0-beta.0", + "@angular/cli": "", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", diff --git a/ponyracer/src/app/app.component.spec.ts b/ponyracer/src/app/app.component.spec.ts index 9510495a2..bcbdf36b3 100644 --- a/ponyracer/src/app/app.component.spec.ts +++ b/ponyracer/src/app/app.component.spec.ts @@ -1,7 +1,5 @@ import { TestBed, async } from '@angular/core/testing'; - import { AppComponent } from './app.component'; - describe('AppComponent', () => { beforeEach(async(() => { TestBed.configureTestingModule({ @@ -10,19 +8,16 @@ describe('AppComponent', () => { ], }).compileComponents(); })); - it('should create the app', async(() => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.debugElement.componentInstance; expect(app).toBeTruthy(); })); - it(`should have as title 'app'`, async(() => { const fixture = TestBed.createComponent(AppComponent); const app = fixture.debugElement.componentInstance; expect(app.title).toEqual('app'); })); - it('should render title in a h1 tag', async(() => { const fixture = TestBed.createComponent(AppComponent); fixture.detectChanges(); From f65fa69adce8b9fdd02ff6e187654d1beeca58ea Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:28:57 -0400 Subject: [PATCH 26/29] chore: version 1.4.0-beta.2 --- ponyracer/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index e78763778..06a5c06dc 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "", + "@angular/cli": "1.4.0-beta.2", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", From 903ad9ddd67be58d632777bb25ead2426d167911 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:46:11 -0400 Subject: [PATCH 27/29] 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 } } From 0d951dcb7950c7b0588cbb5b6f2126aaabdfe861 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:30:41 -0400 Subject: [PATCH 28/29] chore: version 1.4.0-rc.2 --- ponyracer/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index b7d1cd0ee..acd5f9845 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.4.0-rc.1", + "@angular/cli": "1.4.0-rc.2", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53", From 7542aad68abe1b08de2683f2593f202521d96011 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Sat, 7 Oct 2017 22:31:39 -0400 Subject: [PATCH 29/29] chore: version 1.4.0 --- ponyracer/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ponyracer/package.json b/ponyracer/package.json index acd5f9845..b2d67b743 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -26,7 +26,7 @@ "zone.js": "^0.8.14" }, "devDependencies": { - "@angular/cli": "1.4.0-rc.2", + "@angular/cli": "1.4.0", "@angular/compiler-cli": "^4.2.4", "@angular/language-service": "^4.2.4", "@types/jasmine": "~2.5.53",