node-osc 8.0.9 → 8.0.11
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,10 +20,12 @@ jobs:
|
|
|
20
20
|
node-version: 18
|
|
21
21
|
registry-url: 'https://registry.npmjs.org'
|
|
22
22
|
cache: npm
|
|
23
|
+
- name: Install latest npm version
|
|
24
|
+
run: npm install -g npm@latest
|
|
23
25
|
- name: Install dependencies and build
|
|
24
26
|
run: npm ci
|
|
25
27
|
- name: Publish package
|
|
26
|
-
run: npm
|
|
28
|
+
run: npm publish --provenance
|
|
27
29
|
env:
|
|
28
30
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
29
31
|
|
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": "8.0.
|
|
4
|
+
"version": "8.0.11",
|
|
5
5
|
"exports": {
|
|
6
6
|
"require": "./dist/lib/index.js",
|
|
7
7
|
"default": "./lib/index.mjs"
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
],
|
|
35
35
|
"repository": {
|
|
36
36
|
"type": "git",
|
|
37
|
-
"url": "git://github.com/MylesBorins/node-osc.git"
|
|
37
|
+
"url": "git+https://github.com/MylesBorins/node-osc.git"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"osc-min": "^1.1.1"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"c8": "^7.
|
|
44
|
-
"eslint": "^8.
|
|
43
|
+
"c8": "^7.13.0",
|
|
44
|
+
"eslint": "^8.36.0",
|
|
45
45
|
"get-port": "^6.1.2",
|
|
46
|
-
"rollup": "^3.
|
|
46
|
+
"rollup": "^3.20.1",
|
|
47
47
|
"tap": "^16.3.0"
|
|
48
48
|
}
|
|
49
49
|
}
|