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.
- package/.github/workflows/bump-version.yml +3 -3
- package/dist/test/util.js +4 -1
- package/package.json +1 -1
- package/test/util.mjs +4 -1
|
@@ -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
|
-
|
|
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
package/test/util.mjs
CHANGED