Skip to content

Commit 4a38ae9

Browse files
committed
chore: version 7.1.0-beta.0
1 parent 05026f8 commit 4a38ae9

File tree

5 files changed

+22
-17
lines changed

5 files changed

+22
-17
lines changed

ponyracer/.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
# dependencies
99
/node_modules
1010

11+
# profiling files
12+
chrome-profiler-events.json
13+
speed-measure-plugin.json
14+
1115
# IDEs and editors
1216
/.idea
1317
.project

ponyracer/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,38 +11,38 @@
1111
},
1212
"private": true,
1313
"dependencies": {
14-
"@angular/animations": "~7.0.0",
15-
"@angular/common": "~7.0.0",
16-
"@angular/compiler": "~7.0.0",
17-
"@angular/core": "~7.0.0",
18-
"@angular/forms": "~7.0.0",
19-
"@angular/http": "~7.0.0",
20-
"@angular/platform-browser": "~7.0.0",
21-
"@angular/platform-browser-dynamic": "~7.0.0",
22-
"@angular/router": "~7.0.0",
14+
"@angular/animations": "~7.1.0-beta.0",
15+
"@angular/common": "~7.1.0-beta.0",
16+
"@angular/compiler": "~7.1.0-beta.0",
17+
"@angular/core": "~7.1.0-beta.0",
18+
"@angular/forms": "~7.1.0-beta.0",
19+
"@angular/platform-browser": "~7.1.0-beta.0",
20+
"@angular/platform-browser-dynamic": "~7.1.0-beta.0",
21+
"@angular/router": "~7.1.0-beta.0",
2322
"core-js": "^2.5.4",
2423
"rxjs": "~6.3.3",
24+
"tslib": "^1.9.0",
2525
"zone.js": "~0.8.26"
2626
},
2727
"devDependencies": {
28-
"@angular-devkit/build-angular": "~0.10.0",
29-
"@angular/cli": "~7.0.7",
30-
"@angular/compiler-cli": "~7.0.0",
31-
"@angular/language-service": "~7.0.0",
28+
"@angular-devkit/build-angular": "~0.11.0-beta.0",
29+
"@angular/cli": "~7.1.0-beta.0",
30+
"@angular/compiler-cli": "~7.1.0-beta.0",
31+
"@angular/language-service": "~7.1.0-beta.0",
3232
"@types/node": "~8.9.4",
3333
"@types/jasmine": "~2.8.8",
3434
"@types/jasminewd2": "~2.0.3",
3535
"codelyzer": "~4.5.0",
3636
"jasmine-core": "~2.99.1",
3737
"jasmine-spec-reporter": "~4.2.1",
38-
"karma": "~3.0.0",
38+
"karma": "~3.1.1",
3939
"karma-chrome-launcher": "~2.2.0",
4040
"karma-coverage-istanbul-reporter": "~2.0.1",
4141
"karma-jasmine": "~1.1.2",
4242
"karma-jasmine-html-reporter": "^0.2.2",
4343
"protractor": "~5.4.0",
4444
"ts-node": "~7.0.0",
4545
"tslint": "~5.11.0",
46-
"typescript": "~3.1.6"
46+
"typescript": "~3.1.4"
4747
}
4848
}

ponyracer/src/app/app.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ <h2>Here are some links to help you start: </h2>
1111
<h2><a target="_blank" rel="noopener" href="https://angular.io/tutorial">Tour of Heroes</a></h2>
1212
</li>
1313
<li>
14-
<h2><a target="_blank" rel="noopener" href="https://github.com/angular/angular-cli/wiki">CLI Documentation</a></h2>
14+
<h2><a target="_blank" rel="noopener" href="https://angular.io/cli">CLI Documentation</a></h2>
1515
</li>
1616
<li>
1717
<h2><a target="_blank" rel="noopener" href="https://blog.angular.io/">Angular blog</a></h2>

ponyracer/src/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module.exports = function (config) {
1717
},
1818
coverageIstanbulReporter: {
1919
dir: require('path').join(__dirname, '../coverage'),
20-
reports: ['html', 'lcovonly'],
20+
reports: ['html', 'lcovonly', 'text-summary'],
2121
fixWebpackSourcePaths: true
2222
},
2323
reporters: ['progress', 'kjhtml'],

ponyracer/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"moduleResolution": "node",
1010
"emitDecoratorMetadata": true,
1111
"experimentalDecorators": true,
12+
"importHelpers": true,
1213
"target": "es5",
1314
"typeRoots": [
1415
"node_modules/@types"

0 commit comments

Comments
 (0)