Skip to content

Commit 9a038d2

Browse files
committed
chore: update package name and remove ngrx from eslint plugins
1 parent a737dce commit 9a038d2

File tree

4 files changed

+14
-18
lines changed

4 files changed

+14
-18
lines changed

.eslintrc.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
}
2121
]
2222
},
23-
"plugins": ["ngrx"],
23+
"plugins": [],
2424
"extends": []
2525
},
2626
{
2727
"files": ["*.ts", "*.tsx"],
2828
"extends": ["plugin:@nrwl/nx/typescript"],
2929
"rules": {},
30-
"plugins": ["ngrx"]
30+
"plugins": []
3131
},
3232
{
3333
"files": ["*.js", "*.jsx"],

.github/workflows/ci.yml

+10-11
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,16 @@ on: [push]
44

55
jobs:
66
build:
7-
87
runs-on: ubuntu-latest
98

109
steps:
11-
- uses: actions/checkout@v2
12-
- uses: actions/setup-node@v2
13-
with:
14-
node-version: '16.x'
15-
- run: npm ci
16-
- run: npm run lint
17-
- run: npm run build
18-
- run: npm run test
19-
env:
20-
CI: true
10+
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v2
12+
with:
13+
node-version: '16.x'
14+
- run: npm ci
15+
- run: npx nx run-many --target=lint --all
16+
- run: npx nx run-many --target=build --all
17+
- run: npx nx run-many --target=test --all
18+
env:
19+
CI: true

apps/nodeplotlib/src/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "npl",
2+
"name": "nodeplotlib",
33
"version": "0.8.0-rc0",
44
"license": "MIT",
55
"main": "main.js",

package.json

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
{
2-
"name": "npl",
2+
"name": "nodeplotlib",
33
"version": "0.8.0-rc0",
44
"license": "MIT",
55
"scripts": {
66
"ng": "nx",
77
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
8-
"start": "nx serve",
98
"format:write": "nx format:write",
10-
"lint": "nx affected:lint",
119
"build": "nx build",
12-
"test": "nx test",
1310
"demo": "node ./tools/demo/candlestick.js"
1411
},
1512
"private": true,

0 commit comments

Comments
 (0)