Skip to content

Commit 5b39927

Browse files
author
Alexandre van Beurden
committed
update
1 parent d72e3fd commit 5b39927

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ jobs:
2020
node-version: ${{ matrix.node-version }}
2121
cache: 'npm'
2222
- run: npm ci
23-
- run: npm run build --if-present
23+
- run: npm run build
2424
- run: npm test

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
with:
1515
node-version: 20
1616
- run: npm ci
17+
- run: npm run build
1718
- run: npm test
1819

1920
publish-npm:
@@ -26,6 +27,7 @@ jobs:
2627
node-version: 20
2728
registry-url: https://registry.npmjs.org/
2829
- run: npm ci
30+
- run: npm run build
2931
- run: npm publish
3032
env:
3133
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

package.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
"version": "1.0.0",
44
"main": "lib/index.js",
55
"typings": "lib/index.d.ts",
6+
"types": "lib/index.d.ts",
7+
"type": "module",
68
"files": [
79
"src/"
810
],
@@ -34,6 +36,10 @@
3436
"bugs": {
3537
"url": "https://github.com/RegexSolver/regexsolver-js/issues"
3638
},
39+
"homepage": "https://regexsolver.com",
40+
"contributors": [
41+
"Alexandre van Beurden (https://github.com/alexvbrdn)"
42+
],
3743
"dependencies": {
3844
"axios": "^1.7.3"
3945
},

0 commit comments

Comments
 (0)