@library-pals/isbn 0.0.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,7 +11,7 @@ jobs:
11
11
  - uses: actions/checkout@v4
12
12
  - uses: actions/setup-node@v4
13
13
  with:
14
- node-version: 20
14
+ node-version: 20.x
15
15
  - run: npm ci
16
16
  - run: npm test
17
17
 
@@ -8,6 +8,8 @@ jobs:
8
8
  steps:
9
9
  - uses: actions/checkout@v4
10
10
  - uses: actions/setup-node@v4
11
+ with:
12
+ node-version: 20.x
11
13
  - run: npm ci
12
14
  - run: npm test
13
15
  env:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@library-pals/isbn",
3
- "version": "0.0.0",
3
+ "version": "0.2.0",
4
4
  "description": "Find books by ISBN",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -8,7 +8,7 @@
8
8
  "node": ">=20.0.0"
9
9
  },
10
10
  "bin": {
11
- "isbn": "./src/cli.js"
11
+ "isbn": "src/cli.js"
12
12
  },
13
13
  "scripts": {
14
14
  "lint": "eslint .",