@live-change/dao-websocket 0.5.9 → 0.5.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/dao-websocket",
3
- "version": "0.5.9",
3
+ "version": "0.5.11",
4
4
  "author": {
5
5
  "email": "m8@em8.pl",
6
6
  "name": "Michał Łaszczewski",
@@ -10,7 +10,7 @@
10
10
  "url": "https://github.com/live-change/live-change-dao/issues"
11
11
  },
12
12
  "dependencies": {
13
- "@live-change/dao": "^0.5.9",
13
+ "@live-change/dao": "^0.5.11",
14
14
  "bufferutil": "^4.0.3",
15
15
  "debug": "^4.3.4",
16
16
  "supports-color": "^7.2.0",
@@ -41,5 +41,5 @@
41
41
  "scripts": {
42
42
  "compileTests": "webpack test/*.js tests-bundle.js"
43
43
  },
44
- "gitHead": "b4fc670f10aa369feb0c371c976464b246e87e9d"
44
+ "gitHead": "9cf176fdad2760a9dd2c3d1e8bb7087c27ac3e90"
45
45
  }
@@ -1,31 +0,0 @@
1
- name: Node.js Package
2
-
3
- on:
4
- release:
5
- types: [created]
6
-
7
- jobs:
8
- build:
9
- runs-on: ubuntu-latest
10
- steps:
11
- - uses: actions/checkout@v1
12
- - uses: actions/setup-node@v1
13
- with:
14
- node-version: 12
15
- - run: npm ci
16
- - run: npm test
17
-
18
- publish-npm:
19
- needs: build
20
- runs-on: ubuntu-latest
21
- steps:
22
- - uses: actions/checkout@v1
23
- - uses: actions/setup-node@v1
24
- with:
25
- node-version: 12
26
- registry-url: https://registry.npmjs.org/
27
- - run: npm ci
28
- - run: npm publish
29
- env:
30
- NODE_AUTH_TOKEN: ${{secrets.npm_token}}
31
-