Skip to content

Commit

Permalink
feat(lil-gui): update nx
Browse files Browse the repository at this point in the history
  • Loading branch information
nartc committed Jan 6, 2023
1 parent 914d0b2 commit 17c47a3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 22 deletions.
16 changes: 0 additions & 16 deletions packages/ngx-lil-gui/.browserslistrc

This file was deleted.

9 changes: 5 additions & 4 deletions packages/ngx-lil-gui/project.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{
"name": "ngx-lil-gui",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"projectType": "library",
"sourceRoot": "packages/ngx-lil-gui/src",
"prefix": "nartc",
"targets": {
"build": {
"executor": "@nrwl/angular:package",
"outputs": ["dist/packages/ngx-lil-gui"],
"outputs": ["{workspaceRoot}/dist/packages/ngx-lil-gui"],
"options": {
"project": "packages/ngx-lil-gui/ng-package.json"
},
Expand All @@ -22,7 +23,7 @@
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/packages/ngx-lil-gui"],
"outputs": ["{workspaceRoot}/coverage/packages/ngx-lil-gui"],
"options": {
"jestConfig": "packages/ngx-lil-gui/jest.config.ts",
"passWithNoTests": true
Expand All @@ -38,13 +39,13 @@
}
},
"release": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "dotenv release-it -- --config=./packages/ngx-lil-gui/.release-it.json"
}
},
"publish": {
"executor": "@nrwl/workspace:run-commands",
"executor": "nx:run-commands",
"options": {
"command": "npm publish",
"cwd": "dist/packages/ngx-lil-gui"
Expand Down
4 changes: 3 additions & 1 deletion packages/ngx-lil-gui/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"types": []
"types": [],
"target": "ES2022",
"useDefineForClassFields": false
},
"exclude": [
"src/test-setup.ts",
Expand Down
4 changes: 3 additions & 1 deletion packages/ngx-lil-gui/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"extends": "./tsconfig.lib.json",
"compilerOptions": {
"declarationMap": false
"declarationMap": false,
"target": "ES2022",
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"compilationMode": "partial"
Expand Down

0 comments on commit 17c47a3

Please sign in to comment.