node-osc 9.1.0 → 9.1.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.
@@ -50,11 +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
+ # git config gpg.format ssh
54
+ # git config user.signingKey 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFtQmrz647zOGumjiqGirj1G9brj/QbwJQ5S3gHRmcfl myles.borins@gmail.com'
55
55
 
56
56
  - name: bump version
57
- run: npm version ${{ github.event.inputs.version }} --sign-git-tag
57
+ run: npm version ${{ github.event.inputs.version }} # --sign-git-tag
58
58
 
59
59
  - name: Push latest version
60
60
  run: git push origin main --follow-tags
package/dist/test/util.js CHANGED
@@ -2,9 +2,12 @@
2
2
 
3
3
  async function bootstrap(t) {
4
4
  const {default: getPorts, portNumbers} = await import('get-port');
5
- t.context.port = await getPorts({
5
+ const port = await getPorts({
6
6
  port: portNumbers(3000, 3500)
7
7
  });
8
+ t.context = {
9
+ port
10
+ };
8
11
  }
9
12
 
10
13
  exports.bootstrap = bootstrap;
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": "9.1.0",
4
+ "version": "9.1.1",
5
5
  "exports": {
6
6
  "require": "./dist/lib/index.js",
7
7
  "default": "./lib/index.mjs"
package/test/util.mjs CHANGED
@@ -1,8 +1,11 @@
1
1
  async function bootstrap(t) {
2
2
  const {default: getPorts, portNumbers} = await import('get-port');
3
- t.context.port = await getPorts({
3
+ const port = await getPorts({
4
4
  port: portNumbers(3000, 3500)
5
5
  });
6
+ t.context = {
7
+ port
8
+ };
6
9
  }
7
10
 
8
11
  export {