Skip to content

Commit

Permalink
chore: update package name and remove ngrx from eslint plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
ngfelixl committed Dec 20, 2021
1 parent a737dce commit 9a038d2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
}
]
},
"plugins": ["ngrx"],
"plugins": [],
"extends": []
},
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nrwl/nx/typescript"],
"rules": {},
"plugins": ["ngrx"]
"plugins": []
},
{
"files": ["*.js", "*.jsx"],
Expand Down
21 changes: 10 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@ on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
- run: npm ci
- run: npm run lint
- run: npm run build
- run: npm run test
env:
CI: true
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
- run: npm ci
- run: npx nx run-many --target=lint --all
- run: npx nx run-many --target=build --all
- run: npx nx run-many --target=test --all
env:
CI: true
2 changes: 1 addition & 1 deletion apps/nodeplotlib/src/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "npl",
"name": "nodeplotlib",
"version": "0.8.0-rc0",
"license": "MIT",
"main": "main.js",
Expand Down
5 changes: 1 addition & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,12 @@
{
"name": "npl",
"name": "nodeplotlib",
"version": "0.8.0-rc0",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2015 browser module main",
"start": "nx serve",
"format:write": "nx format:write",
"lint": "nx affected:lint",
"build": "nx build",
"test": "nx test",
"demo": "node ./tools/demo/candlestick.js"
},
"private": true,
Expand Down

0 comments on commit 9a038d2

Please sign in to comment.