thread-stream 0.15.2 → 1.0.0

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.
@@ -12,9 +12,12 @@ jobs:
12
12
  test:
13
13
  runs-on: ${{ matrix.os }}
14
14
 
15
+ permissions:
16
+ contents: read
17
+
15
18
  strategy:
16
19
  matrix:
17
- node-version: [12, 14, 16]
20
+ node-version: [14, 16, 18]
18
21
  os: [macos-latest, ubuntu-latest, windows-latest]
19
22
 
20
23
  steps:
@@ -55,7 +58,10 @@ jobs:
55
58
  automerge:
56
59
  needs: test
57
60
  runs-on: ubuntu-latest
61
+ permissions:
62
+ pull-requests: write
63
+ contents: write
58
64
  steps:
59
- - uses: fastify/github-action-merge-dependabot@v3.0.2
65
+ - uses: fastify/github-action-merge-dependabot@v3
60
66
  with:
61
67
  github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -15,7 +15,7 @@ jobs:
15
15
  strategy:
16
16
  matrix:
17
17
  os: [macOS-latest, windows-latest]
18
- node-version: [12, 14, 16]
18
+ node-version: [14, 16, 18]
19
19
  steps:
20
20
  - uses: actions/checkout@v3
21
21
  - name: Use Node.js ${{ matrix.node-version }}
@@ -38,7 +38,7 @@ jobs:
38
38
  strategy:
39
39
  matrix:
40
40
  os: [macOS-latest]
41
- node-version: [12, 14, 16]
41
+ node-version: [14, 16, 18]
42
42
  steps:
43
43
  - uses: actions/checkout@v3
44
44
  - name: Use Node.js ${{ matrix.node-version }}
package/package.json CHANGED
@@ -1,23 +1,24 @@
1
1
  {
2
2
  "name": "thread-stream",
3
- "version": "0.15.2",
3
+ "version": "1.0.0",
4
4
  "description": "A streaming way to send data to a Node.js Worker Thread",
5
5
  "main": "index.js",
6
+ "types": "index.d.ts",
6
7
  "dependencies": {
7
8
  "real-require": "^0.1.0"
8
9
  },
9
10
  "devDependencies": {
10
- "@types/node": "^12.0.0",
11
+ "@types/node": "^17.0.37",
11
12
  "@types/tap": "^15.0.0",
12
- "desm": "^1.1.0",
13
+ "desm": "^1.3.0",
13
14
  "fastbench": "^1.0.1",
14
- "husky": "^7.0.0",
15
- "sonic-boom": "^2.0.1",
16
- "standard": "^16.0.3",
17
- "tap": "^16.0.0",
18
- "ts-node": "^10.7.0",
19
- "typescript": "^4.6.0",
20
- "why-is-node-running": "^2.2.0"
15
+ "husky": "^8.0.1",
16
+ "sonic-boom": "^2.8.0",
17
+ "standard": "^17.0.0",
18
+ "tap": "^16.2.0",
19
+ "ts-node": "^10.8.0",
20
+ "typescript": "^4.7.2",
21
+ "why-is-node-running": "^2.2.2"
21
22
  },
22
23
  "scripts": {
23
24
  "test": "standard && npm run transpile && tap test/*.test.*js && tap --ts test/*.test.*ts",