Skip to content

Commit fbf31a4

Browse files
committed
Cleanup
1 parent 1c45725 commit fbf31a4

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/testing.yml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
uses: actions/setup-node@v3
2525
with:
2626
node-version: ${{ matrix.node-version }}
27+
cache: 'npm'
2728
- run: npm ci
2829
- run: npm run build --if-present
2930
- run: npm run lint --if-present

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# NgxNullish
1+
# ngx-nullish
22

33
[![node version](https://img.shields.io/node/v/ngx-nullish.svg)](https://www.npmjs.com/package/ngx-nullish)
44
[![npm version](https://badge.fury.io/js/ngx-nullish.svg)](https://badge.fury.io/js/ngx-nullish)

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@
66
"start": "ng serve",
77
"prebuild": "cp README.md projects/ngx-nullish && rm -rf dist/",
88
"build": "ng build --prod",
9-
"test": "ng test",
10-
"test:ci": "ng test --no-watch --no-progress --browsers ChromeHeadless",
9+
"test": "ng test --no-watch --no-progress --browsers ChromeHeadless",
10+
"test:watch": "ng test",
1111
"lint": "ng lint",
1212
"e2e": "ng e2e",
1313
"predeploy": "npm run lint && npm run test && standard-version && npm run build",
14-
"deploy": "npm publish --folder ./dist/ngx-nullish"
14+
"deploy": "npm publish --folder ./dist/ngx-nullish",
15+
"version": "conventional-changelog -i CHANGELOG.md -s -r 0"
1516
},
1617
"private": true,
1718
"dependencies": {

0 commit comments

Comments
 (0)