@cardano-sdk/util-rxjs 0.6.0 → 0.6.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cardano-sdk/util-rxjs",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "RxJS extensions",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=16.20.2"
|
|
@@ -24,33 +24,32 @@
|
|
|
24
24
|
"build:cjs": "tsc --build src",
|
|
25
25
|
"build": "run-s build:cjs build:esm module-fixup",
|
|
26
26
|
"circular-deps:check": "madge --circular dist/cjs",
|
|
27
|
-
"module-fixup": "
|
|
28
|
-
"tscNoEmit": "
|
|
29
|
-
"cleanup:dist": "
|
|
30
|
-
"cleanup:nm": "
|
|
27
|
+
"module-fixup": "cp ../../build/cjs-package.json ./dist/cjs/package.json && cp ../../build/esm-package.json ./dist/esm/package.json",
|
|
28
|
+
"tscNoEmit": "echo typescript --noEmit command not implemented yet",
|
|
29
|
+
"cleanup:dist": "rm -rf dist",
|
|
30
|
+
"cleanup:nm": "rm -rf node_modules",
|
|
31
31
|
"cleanup": "run-s cleanup:dist cleanup:nm",
|
|
32
32
|
"lint": "eslint -c ../../complete.eslintrc.js \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
33
33
|
"lint:fix": "yarn lint --fix",
|
|
34
34
|
"test": "jest -c ./jest.config.js",
|
|
35
35
|
"test:build:verify": "tsc --build ./test",
|
|
36
|
-
"coverage": "yarn test --coverage",
|
|
36
|
+
"coverage": "yarn test --coverage || true",
|
|
37
37
|
"prepack": "yarn build",
|
|
38
38
|
"test:debug": "DEBUG=true yarn test",
|
|
39
|
-
"test:e2e": "
|
|
39
|
+
"test:e2e": "echo 'test:e2e' command not implemented yet"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@cardano-sdk/util": "~0.14.
|
|
42
|
+
"@cardano-sdk/util": "~0.14.3",
|
|
43
43
|
"backoff-rxjs": "^7.0.0",
|
|
44
44
|
"rxjs": "^7.4.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@cardano-sdk/util-dev": "~0.
|
|
47
|
+
"@cardano-sdk/util-dev": "~0.18.0",
|
|
48
48
|
"eslint": "^7.32.0",
|
|
49
49
|
"jest": "^28.1.3",
|
|
50
50
|
"madge": "^5.0.1",
|
|
51
51
|
"npm-run-all": "^4.1.5",
|
|
52
52
|
"rxjs": "^7.4.0",
|
|
53
|
-
"shx": "^0.3.3",
|
|
54
53
|
"ts-jest": "^28.0.7",
|
|
55
54
|
"typescript": "^4.7.4"
|
|
56
55
|
},
|
|
@@ -60,5 +59,5 @@
|
|
|
60
59
|
"LICENSE",
|
|
61
60
|
"NOTICE"
|
|
62
61
|
],
|
|
63
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "02a0eff7b7b7a3b98b42fd19b2ae85cfc4e7d87f"
|
|
64
63
|
}
|