@natlibfi/issn-verify 2.0.0-alpha.1 → 2.0.1-alpha.1
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.
|
@@ -20,7 +20,7 @@ jobs:
|
|
|
20
20
|
|
|
21
21
|
steps:
|
|
22
22
|
- name: Checkout the code
|
|
23
|
-
uses: actions/checkout@
|
|
23
|
+
uses: actions/checkout@v6
|
|
24
24
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
25
25
|
uses: actions/setup-node@v6
|
|
26
26
|
with:
|
|
@@ -41,7 +41,7 @@ jobs:
|
|
|
41
41
|
|
|
42
42
|
steps:
|
|
43
43
|
- name: Checkout the code
|
|
44
|
-
uses: actions/checkout@
|
|
44
|
+
uses: actions/checkout@v6
|
|
45
45
|
- name: nodejsscan scan
|
|
46
46
|
id: njsscan
|
|
47
47
|
uses: ajinabraham/njsscan-action@master
|
|
@@ -54,7 +54,7 @@ jobs:
|
|
|
54
54
|
container: node:22
|
|
55
55
|
|
|
56
56
|
steps:
|
|
57
|
-
- uses: actions/checkout@
|
|
57
|
+
- uses: actions/checkout@v6
|
|
58
58
|
- uses: mikaelvesavuori/license-compliance-action@v1
|
|
59
59
|
with:
|
|
60
60
|
exclude_pattern: /^@natlibfi/
|
|
@@ -66,7 +66,7 @@ jobs:
|
|
|
66
66
|
if: contains(github.ref, 'refs/tags/')
|
|
67
67
|
|
|
68
68
|
steps:
|
|
69
|
-
- uses: actions/checkout@
|
|
69
|
+
- uses: actions/checkout@v6
|
|
70
70
|
# Setup .npmrc file to publish to npm
|
|
71
71
|
- uses: actions/setup-node@v6
|
|
72
72
|
with:
|
package/README.md
CHANGED
|
@@ -39,6 +39,6 @@ if ( issn(test) ) {
|
|
|
39
39
|
## License and copyright
|
|
40
40
|
**This software is fork of https://github.com/malantonio/issn-verify with updated dependencies**
|
|
41
41
|
|
|
42
|
-
Copyright (c) 2018, 2023-
|
|
42
|
+
Copyright (c) 2018, 2023-2026 **University Of Helsinki (The National Library Of Finland)**
|
|
43
43
|
|
|
44
44
|
This project's source code is licensed under the terms of **MIT License** or any later version.
|
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"url": "https://github.com/NatLibFi/issn-verify-js"
|
|
21
21
|
},
|
|
22
22
|
"license": "MIT",
|
|
23
|
-
"version": "2.0.
|
|
23
|
+
"version": "2.0.1-alpha.1",
|
|
24
24
|
"main": "./dist/issnVerify.js",
|
|
25
25
|
"type": "module",
|
|
26
26
|
"engines": {
|
|
@@ -36,9 +36,8 @@
|
|
|
36
36
|
"test": "npm run lint && npm run test:base",
|
|
37
37
|
"test:base": "node --test --experimental-test-coverage --test-reporter=spec './test/*.test.js'"
|
|
38
38
|
},
|
|
39
|
-
"dependencies": {},
|
|
40
39
|
"devDependencies": {
|
|
41
|
-
"esbuild": "^0.
|
|
42
|
-
"eslint": "^9.
|
|
40
|
+
"esbuild": "^0.27.2",
|
|
41
|
+
"eslint": "^9.39.1"
|
|
43
42
|
}
|
|
44
43
|
}
|