node-datachannel 0.33.3 → 0.33.4
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/CMakeLists.txt +1 -1
- package/package.json +13 -11
package/CMakeLists.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-datachannel",
|
|
3
|
-
"version": "0.33.
|
|
3
|
+
"version": "0.33.4",
|
|
4
|
+
"//": "NOTE: When bumping 'version', also update all @node-datachannel/* packages in 'optionalDependencies' below!",
|
|
4
5
|
"description": "WebRTC For Node.js and Electron. libdatachannel node bindings.",
|
|
5
6
|
"main": "./dist/cjs/lib/index.cjs",
|
|
6
7
|
"module": "./dist/esm/lib/index.mjs",
|
|
@@ -41,7 +42,8 @@
|
|
|
41
42
|
"build:tsc": "rimraf dist && rollup -c",
|
|
42
43
|
"build:tsc:watch": "rollup -c -w",
|
|
43
44
|
"clean": "rimraf dist build npm",
|
|
44
|
-
"lint": "eslint . --ext .ts --ext .mts",
|
|
45
|
+
"lint": "eslint . --ext .ts --ext .mts && npm run verify-versions",
|
|
46
|
+
"verify-versions": "node scripts/verify-platform-versions.js",
|
|
45
47
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
46
48
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
|
|
47
49
|
"test:wpt": "npm run run:wpt:server & (sleep 8 && (npm run run:wpt:test | tee test/wpt-tests/last-test-results.md) )",
|
|
@@ -118,14 +120,14 @@
|
|
|
118
120
|
"detect-libc": "^2.0.4"
|
|
119
121
|
},
|
|
120
122
|
"optionalDependencies": {
|
|
121
|
-
"@node-datachannel/android-arm64": "0.33.
|
|
122
|
-
"@node-datachannel/darwin-arm64": "0.33.
|
|
123
|
-
"@node-datachannel/darwin-x64": "0.33.
|
|
124
|
-
"@node-datachannel/linux-arm64-gnu": "0.33.
|
|
125
|
-
"@node-datachannel/linux-arm64-musl": "0.33.
|
|
126
|
-
"@node-datachannel/linux-x64-gnu": "0.33.
|
|
127
|
-
"@node-datachannel/linux-x64-musl": "0.33.
|
|
128
|
-
"@node-datachannel/win32-arm64-msvc": "0.33.
|
|
129
|
-
"@node-datachannel/win32-x64-msvc": "0.33.
|
|
123
|
+
"@node-datachannel/android-arm64": "0.33.4",
|
|
124
|
+
"@node-datachannel/darwin-arm64": "0.33.4",
|
|
125
|
+
"@node-datachannel/darwin-x64": "0.33.4",
|
|
126
|
+
"@node-datachannel/linux-arm64-gnu": "0.33.4",
|
|
127
|
+
"@node-datachannel/linux-arm64-musl": "0.33.4",
|
|
128
|
+
"@node-datachannel/linux-x64-gnu": "0.33.4",
|
|
129
|
+
"@node-datachannel/linux-x64-musl": "0.33.4",
|
|
130
|
+
"@node-datachannel/win32-arm64-msvc": "0.33.4",
|
|
131
|
+
"@node-datachannel/win32-x64-msvc": "0.33.4"
|
|
130
132
|
}
|
|
131
133
|
}
|