redux-cluster-ws 2.0.26 → 2.0.27
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 +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redux-cluster-ws",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.27",
|
|
4
4
|
"description": "WebSocket client/server wrapper for redux-cluster with TypeScript support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/cjs/index.js",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
},
|
|
41
41
|
"scripts": {
|
|
42
42
|
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:types && npm run build:pkg",
|
|
43
|
-
"build:esm": "tsc
|
|
44
|
-
"build:cjs": "tsc -p tsconfig.cjs.json
|
|
45
|
-
"build:types": "tsc --
|
|
43
|
+
"build:esm": "tsc -p tsconfig.esm.json",
|
|
44
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
45
|
+
"build:types": "tsc --outDir dist/types --declaration true --emitDeclarationOnly",
|
|
46
46
|
"build:pkg": "echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
|
|
47
47
|
"dev": "npm run clean && npm run build:esm:dev && npm run build:cjs:dev && npm run build:types",
|
|
48
48
|
"build:esm:dev": "tsc --module ES2020 --outDir dist/esm --target ES2020 --declaration false --sourceMap",
|