diff --git a/ponyracer/package.json b/ponyracer/package.json index ddde193b1..b2c7ec624 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -11,26 +11,26 @@ }, "private": true, "dependencies": { - "@angular/animations": "~10.0.14", - "@angular/common": "~10.0.14", - "@angular/compiler": "~10.0.14", - "@angular/core": "~10.0.14", - "@angular/forms": "~10.0.14", - "@angular/platform-browser": "~10.0.14", - "@angular/platform-browser-dynamic": "~10.0.14", - "@angular/router": "~10.0.14", - "rxjs": "~6.5.5", + "@angular/animations": "~10.1.0-next.0", + "@angular/common": "~10.1.0-next.0", + "@angular/compiler": "~10.1.0-next.0", + "@angular/core": "~10.1.0-next.0", + "@angular/forms": "~10.1.0-next.0", + "@angular/platform-browser": "~10.1.0-next.0", + "@angular/platform-browser-dynamic": "~10.1.0-next.0", + "@angular/router": "~10.1.0-next.0", + "rxjs": "~6.6.0", "tslib": "^2.0.0", - "zone.js": "~0.10.3" + "zone.js": "~0.10.2" }, "devDependencies": { - "@angular-devkit/build-angular": "~0.1000.8", - "@angular/cli": "~10.0.8", - "@angular/compiler-cli": "~10.0.14", + "@angular-devkit/build-angular": "~0.1001.0-next.0", + "@angular/cli": "~10.1.0-next.0", + "@angular/compiler-cli": "~10.1.0-next.0", "@types/node": "^12.11.1", "@types/jasmine": "~3.5.0", "@types/jasminewd2": "~2.0.3", - "codelyzer": "^6.0.0", + "codelyzer": "^6.0.0-next.1", "jasmine-core": "~3.5.0", "jasmine-spec-reporter": "~5.0.0", "karma": "~5.0.0", diff --git a/ponyracer/tslint.json b/ponyracer/tslint.json index eba6f7985..8e5e4af75 100644 --- a/ponyracer/tslint.json +++ b/ponyracer/tslint.json @@ -9,19 +9,19 @@ }, "array-type": false, "arrow-return-shorthand": true, - "curly": true, - "deprecation": { - "severity": "warning" - }, "component-class-suffix": true, - "contextual-lifecycle": true, - "directive-class-suffix": true, "directive-selector": [ true, "attribute", "app", "camelCase" ], + "contextual-lifecycle": true, + "curly": true, + "deprecation": { + "severity": "warning" + }, + "directive-class-suffix": true, "component-selector": [ true, "element", @@ -56,6 +56,7 @@ } ], "no-any": true, + "no-conflicting-lifecycle": true, "no-console": [ true, "debug", @@ -65,11 +66,18 @@ "trace" ], "no-empty": false, + "no-host-metadata-property": true, "no-inferrable-types": [ true, "ignore-params" ], + "no-input-rename": true, + "no-inputs-metadata-property": true, "no-non-null-assertion": true, + "no-output-native": true, + "no-output-on-prefix": true, + "no-output-rename": true, + "no-outputs-metadata-property": true, "no-redundant-jsdoc": true, "no-switch-case-fall-through": true, "no-var-requires": false, @@ -95,6 +103,8 @@ "named": "never" } }, + "template-banana-in-box": true, + "template-no-negated-async": true, "typedef": [ true, "call-signature" @@ -117,6 +127,8 @@ } ] }, + "use-lifecycle-interface": true, + "use-pipe-transform-interface": true, "variable-name": { "options": [ "ban-keywords", @@ -133,21 +145,9 @@ "check-type", "check-typecast" ] - }, - "no-conflicting-lifecycle": true, - "no-host-metadata-property": true, - "no-input-rename": true, - "no-inputs-metadata-property": true, - "no-output-native": true, - "no-output-on-prefix": true, - "no-output-rename": true, - "no-outputs-metadata-property": true, - "template-banana-in-box": true, - "template-no-negated-async": true, - "use-lifecycle-interface": true, - "use-pipe-transform-interface": true + } }, "rulesDirectory": [ "codelyzer" ] -} \ No newline at end of file +}