Skip to content

Commit

Permalink
Release/new (schwamic#95)
Browse files Browse the repository at this point in the history
* chore: remove entryComponents

* chore: update @angular/core @angular/cli

* chore: ng update @angular/material

* chore: update deps

* chore: version 1.2.0
  • Loading branch information
schwamic authored Jul 15, 2020
1 parent bb31132 commit 91f4a3a
Show file tree
Hide file tree
Showing 9 changed files with 3,035 additions and 2,897 deletions.
2 changes: 1 addition & 1 deletion e2e/tsconfig.e2e.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../tsconfig.json",
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"module": "commonjs",
Expand Down
89 changes: 44 additions & 45 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "klangspektrum2",
"version": "1.1.0",
"version": "1.2.0",
"author": "Michael Schwarz",
"license": "MIT",
"repository": {
Expand All @@ -10,7 +10,7 @@
"private": true,
"engines": {
"node": "12",
"yarn": "^1.19.0"
"yarn": "^1.22.0"
},
"scripts": {
"ng": "ng",
Expand All @@ -25,58 +25,57 @@
"e2e": "ng e2e"
},
"dependencies": {
"@angular-devkit/build-angular": "0.900.5",
"@angular/animations": "9.0.5",
"@angular/cdk": "9.1.1",
"@angular/cli": "9.0.5",
"@angular/common": "9.0.5",
"@angular/compiler": "9.0.5",
"@angular/compiler-cli": "9.0.5",
"@angular/core": "9.0.5",
"@angular/forms": "9.0.5",
"@angular/language-service": "9.0.5",
"@angular/material": "9.1.1",
"@angular/platform-browser": "9.0.5",
"@angular/platform-browser-dynamic": "9.0.5",
"@angular/router": "9.0.5",
"@ngrx/effects": "9.0.0",
"@ngrx/entity": "9.0.0",
"@ngrx/router-store": "9.0.0",
"@ngrx/schematics": "9.0.0",
"@ngrx/store": "9.0.0",
"@ngrx/store-devtools": "9.0.0",
"@angular-devkit/build-angular": "0.1000.2",
"@angular/animations": "10.0.4",
"@angular/cdk": "10.0.2",
"@angular/cli": "10.0.2",
"@angular/common": "10.0.4",
"@angular/compiler": "10.0.4",
"@angular/compiler-cli": "10.0.4",
"@angular/core": "10.0.4",
"@angular/forms": "10.0.4",
"@angular/language-service": "10.0.4",
"@angular/material": "10.0.2",
"@angular/platform-browser": "10.0.4",
"@angular/platform-browser-dynamic": "10.0.4",
"@angular/router": "10.0.4",
"@ngrx/effects": "9.2.0",
"@ngrx/entity": "9.2.0",
"@ngrx/router-store": "9.2.0",
"@ngrx/schematics": "9.2.0",
"@ngrx/store": "9.2.0",
"@ngrx/store-devtools": "9.2.0",
"@tresmo/config-tslint": "0.5.5",
"@types/jasmine": "3.5.8",
"@types/jasmine": "3.5.11",
"@types/jasminewd2": "2.0.8",
"@types/node": "12.12.29",
"@types/yargs": "15.0.4",
"@types/node": "14.0.23",
"@types/yargs": "15.0.5",
"chart.js": "2.9.3",
"codelyzer": "5.2.1",
"core-js": "3.6.4",
"codelyzer": "6.0.0",
"core-js": "3.6.5",
"dotenv": "8.2.0",
"hammerjs": "2.0.8",
"jasmine-core": "3.5.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.4.1",
"jasmine-spec-reporter": "5.0.0",
"karma": "5.1.0",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "2.1.1",
"karma-jasmine": "3.1.1",
"karma-jasmine-html-reporter": "1.5.2",
"lodash": "4.17.15",
"karma-coverage-istanbul-reporter": "3.0.2",
"karma-jasmine": "3.3.0",
"karma-jasmine-html-reporter": "1.5.0",
"lodash": "4.17.19",
"lodash-decorators": "6.0.1",
"ng2-charts": "2.3.0",
"ng2-charts": "2.3.2",
"ng2-nouislider": "1.8.2",
"normalize.css": "8.0.1",
"nouislider": "14.1.1",
"protractor": "6.0.0",
"rxjs": "6.5.4",
"ts-node": "8.6.2",
"tslint": "5.20.1",
"typescript": "3.7.5",
"tslib": "1.11.1",
"nouislider": "14.6.0",
"protractor": "7.0.0",
"rxjs": "6.6.0",
"ts-node": "8.10.2",
"tslib": "2.0.0",
"tslint": "6.1.0",
"typescript": "3.9.6",
"web-animations-js": "2.3.2",
"webpack-bundle-analyzer": "3.6.0",
"yargs": "15.3.0",
"zone.js": "0.10.2"
"webpack-bundle-analyzer": "3.8.0",
"yargs": "15.4.1",
"zone.js": "0.10.3"
}
}
File renamed without changes.
3 changes: 1 addition & 2 deletions src/app/shared/shared.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@ import { RefreshAuthDialogComponent } from './components/refresh-auth-dialog/ref
ErrorComponent,
RefreshAuthDialogComponent,
TimePipe,
RangePipe
RangePipe,
],
entryComponents: [RefreshAuthDialogComponent]
})
export class SharedModule {}
2 changes: 1 addition & 1 deletion src/tsconfig.app.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../tsconfig.json",
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"types": []
Expand Down
2 changes: 1 addition & 1 deletion src/tsconfig.spec.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "../tsconfig.json",
"extends": "../tsconfig.base.json",
"compilerOptions": {
"outDir": "../out-tsc/spec",
"types": [
Expand Down
26 changes: 26 additions & 0 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@app/*": ["src/app/*"],
"@env/*": ["src/environments/*"]
},
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "es2020",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
]
}
}
40 changes: 17 additions & 23 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,20 @@
/*
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience.
It is not intended to be used to perform a compilation.
To learn more about this file see: https://angular.io/config/solution-tsconfig.
*/
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@app/*": ["src/app/*"],
"@env/*": ["src/environments/*"]
"files": [],
"references": [
{
"path": "./src/tsconfig.app.json"
},
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"module": "esnext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2018",
"dom"
]
}
{
"path": "./src/tsconfig.spec.json"
},
{
"path": "./e2e/tsconfig.e2e.json"
}
]
}
Loading

0 comments on commit 91f4a3a

Please sign in to comment.