node-osc 8.1.0 → 9.0.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.
|
@@ -33,14 +33,14 @@ jobs:
|
|
|
33
33
|
# run that runs on: tag. (Using the GitHub token would
|
|
34
34
|
# not run the workflow to prevent infinite recursion.)
|
|
35
35
|
- name: Check out source
|
|
36
|
-
uses: actions/checkout@
|
|
36
|
+
uses: actions/checkout@v3
|
|
37
37
|
with:
|
|
38
38
|
ssh-key: ${{ secrets.DEPLOY_KEY }}
|
|
39
39
|
|
|
40
40
|
- name: Setup Node.js
|
|
41
41
|
uses: actions/setup-node@v3
|
|
42
42
|
with:
|
|
43
|
-
node-version:
|
|
43
|
+
node-version: 20
|
|
44
44
|
cache: 'npm'
|
|
45
45
|
|
|
46
46
|
- name: Install npm packages
|
|
@@ -50,9 +50,11 @@ jobs:
|
|
|
50
50
|
run: |
|
|
51
51
|
git config user.name 'Myles Borins'
|
|
52
52
|
git config user.email 'myles.borins@gmail.com'
|
|
53
|
+
git config gpg.format ssh
|
|
54
|
+
git config user.signingKey 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFtQmrz647zOGumjiqGirj1G9brj/QbwJQ5S3gHRmcfl myles.borins@gmail.com'
|
|
53
55
|
|
|
54
56
|
- name: bump version
|
|
55
|
-
run: npm version ${{ github.event.inputs.version }}
|
|
57
|
+
run: npm version ${{ github.event.inputs.version }} --sign-git-tag
|
|
56
58
|
|
|
57
59
|
- name: Push latest version
|
|
58
60
|
run: git push origin main --follow-tags
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-osc",
|
|
3
3
|
"description": "pyOSC inspired library for sending and receiving OSC messages",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "9.0.1",
|
|
5
5
|
"exports": {
|
|
6
6
|
"require": "./dist/lib/index.js",
|
|
7
7
|
"default": "./lib/index.mjs"
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"email": "myles.borins@gmail.com"
|
|
12
12
|
},
|
|
13
13
|
"engines": {
|
|
14
|
-
"node": "^
|
|
14
|
+
"node": "^18.17.0 || >=20.5.0"
|
|
15
15
|
},
|
|
16
16
|
"license": "LGPL-3.0-or-later",
|
|
17
17
|
"scripts": {
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"prepublishOnly": "npm run build",
|
|
21
21
|
"lint": "eslint \"lib/**/*.mjs\" test/* examples/*",
|
|
22
22
|
"test": "npm run lint && npm run build && npm run test:esm && npm run test:cjs",
|
|
23
|
-
"test:esm": "
|
|
24
|
-
"test:cjs": "tap
|
|
23
|
+
"test:esm": "tap -j1 test/test-*.mjs",
|
|
24
|
+
"test:cjs": "tap -j1 dist/test/test-*.js"
|
|
25
25
|
},
|
|
26
26
|
"contributors": [
|
|
27
27
|
"Hans Hübner <hans.huebner@gmail.com>",
|
|
@@ -40,10 +40,9 @@
|
|
|
40
40
|
"osc-min": "^1.1.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"c8": "^8.0.1",
|
|
44
43
|
"eslint": "^8.36.0",
|
|
45
44
|
"get-port": "^6.1.2",
|
|
46
45
|
"rollup": "^3.20.1",
|
|
47
|
-
"tap": "^
|
|
46
|
+
"tap": "^18.4.2"
|
|
48
47
|
}
|
|
49
48
|
}
|