Skip to content

Commit ed6f61a

Browse files
committed
chore: update to nrwl and angular v14
1 parent f77bad7 commit ed6f61a

File tree

8 files changed

+25571
-19304
lines changed

8 files changed

+25571
-19304
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Felix Lemke
3+
Copyright (c) 2022 Felix Lemke
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

angular.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"projectType": "application",
88
"architect": {
99
"build": {
10-
"builder": "@nrwl/node:build",
10+
"builder": "@nrwl/node:webpack",
1111
"outputs": ["{options.outputPath}"],
1212
"options": {
1313
"outputPath": "dist/apps/dev-server",
@@ -37,7 +37,7 @@
3737
}
3838
},
3939
"serve": {
40-
"builder": "@nrwl/node:execute",
40+
"builder": "@nrwl/node:node",
4141
"options": {
4242
"buildTarget": "dev-server:build"
4343
}
@@ -66,14 +66,14 @@
6666
"projectType": "library",
6767
"architect": {
6868
"build": {
69-
"builder": "@nrwl/node:package",
69+
"builder": "@nrwl/node:webpack",
7070
"outputs": ["{options.outputPath}"],
7171
"options": {
72+
"main": "libs/nodeplotlib/src/index.ts",
7273
"outputPath": "dist/libs/nodeplotlib",
7374
"tsConfig": "libs/nodeplotlib/tsconfig.lib.json",
74-
"packageJson": "libs/nodeplotlib/package.json",
75-
"main": "libs/nodeplotlib/src/index.ts",
76-
"assets": ["libs/nodeplotlib/*.md"]
75+
"generatePackageJson": true,
76+
"extractLicenses": true
7777
}
7878
},
7979
"lint": {

apps/web/tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"forceConsistentCasingInFileNames": true,
1818
"strict": true,
1919
"noImplicitReturns": true,
20-
"noFallthroughCasesInSwitch": true
20+
"noFallthroughCasesInSwitch": true,
21+
"target": "es2020"
2122
},
2223
"angularCompilerOptions": {
2324
"strictInjectionParameters": true,

jest.preset.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
const nxPreset = require('@nrwl/jest/preset');
1+
const nxPreset = require('@nrwl/jest/preset').default;
22

33
module.exports = { ...nxPreset };

libs/nodeplotlib/LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Felix Lemke
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)