diff --git a/ponyracer/.gitignore b/ponyracer/.gitignore index ee5c9d833..85158b7a4 100644 --- a/ponyracer/.gitignore +++ b/ponyracer/.gitignore @@ -8,6 +8,10 @@ # dependencies /node_modules +# profiling files +chrome-profiler-events.json +speed-measure-plugin.json + # IDEs and editors /.idea .project diff --git a/ponyracer/package.json b/ponyracer/package.json index cf5806993..4b6b58ae1 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -11,31 +11,31 @@ }, "private": true, "dependencies": { - "@angular/animations": "~7.0.0", - "@angular/common": "~7.0.0", - "@angular/compiler": "~7.0.0", - "@angular/core": "~7.0.0", - "@angular/forms": "~7.0.0", - "@angular/http": "~7.0.0", - "@angular/platform-browser": "~7.0.0", - "@angular/platform-browser-dynamic": "~7.0.0", - "@angular/router": "~7.0.0", + "@angular/animations": "~7.1.0-beta.0", + "@angular/common": "~7.1.0-beta.0", + "@angular/compiler": "~7.1.0-beta.0", + "@angular/core": "~7.1.0-beta.0", + "@angular/forms": "~7.1.0-beta.0", + "@angular/platform-browser": "~7.1.0-beta.0", + "@angular/platform-browser-dynamic": "~7.1.0-beta.0", + "@angular/router": "~7.1.0-beta.0", "core-js": "^2.5.4", "rxjs": "~6.3.3", + "tslib": "^1.9.0", "zone.js": "~0.8.26" }, "devDependencies": { - "@angular-devkit/build-angular": "~0.10.0", - "@angular/cli": "~7.0.7", - "@angular/compiler-cli": "~7.0.0", - "@angular/language-service": "~7.0.0", + "@angular-devkit/build-angular": "~0.11.0-beta.0", + "@angular/cli": "~7.1.0-beta.0", + "@angular/compiler-cli": "~7.1.0-beta.0", + "@angular/language-service": "~7.1.0-beta.0", "@types/node": "~8.9.4", "@types/jasmine": "~2.8.8", "@types/jasminewd2": "~2.0.3", "codelyzer": "~4.5.0", "jasmine-core": "~2.99.1", "jasmine-spec-reporter": "~4.2.1", - "karma": "~3.0.0", + "karma": "~3.1.1", "karma-chrome-launcher": "~2.2.0", "karma-coverage-istanbul-reporter": "~2.0.1", "karma-jasmine": "~1.1.2", @@ -43,6 +43,6 @@ "protractor": "~5.4.0", "ts-node": "~7.0.0", "tslint": "~5.11.0", - "typescript": "~3.1.6" + "typescript": "~3.1.4" } } diff --git a/ponyracer/src/app/app.component.html b/ponyracer/src/app/app.component.html index fa2706a40..5226d57f5 100644 --- a/ponyracer/src/app/app.component.html +++ b/ponyracer/src/app/app.component.html @@ -11,7 +11,7 @@

Here are some links to help you start:

Tour of Heroes

  • -

    CLI Documentation

    +

    CLI Documentation

  • Angular blog

    diff --git a/ponyracer/src/karma.conf.js b/ponyracer/src/karma.conf.js index b6e00421c..ee9caa152 100644 --- a/ponyracer/src/karma.conf.js +++ b/ponyracer/src/karma.conf.js @@ -17,7 +17,7 @@ module.exports = function (config) { }, coverageIstanbulReporter: { dir: require('path').join(__dirname, '../coverage'), - reports: ['html', 'lcovonly'], + reports: ['html', 'lcovonly', 'text-summary'], fixWebpackSourcePaths: true }, reporters: ['progress', 'kjhtml'], diff --git a/ponyracer/tsconfig.json b/ponyracer/tsconfig.json index 46aeded1b..b271fd9f3 100644 --- a/ponyracer/tsconfig.json +++ b/ponyracer/tsconfig.json @@ -9,6 +9,7 @@ "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, + "importHelpers": true, "target": "es5", "typeRoots": [ "node_modules/@types"