klubok 0.1.0 → 0.1.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/README.md +6 -2
- package/dist/index.d.ts +1845 -0
- package/package.json +4 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "klubok",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.1",
|
4
4
|
"description": "Do notation pipes for Promise-based or pure functions which easy to mock",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "dist/index.d.ts",
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"dist/index.d.ts"
|
14
14
|
],
|
15
15
|
"scripts": {
|
16
|
-
"build": "rm -rf dist && tsc
|
16
|
+
"build": "rm -rf dist && tsc",
|
17
17
|
"test": "node --experimental-strip-types --test ./test.ts",
|
18
18
|
"test:types": "cp index.test-d.ts ./dist/ && npx tsd",
|
19
19
|
"prepublishOnly": "npm run build"
|
@@ -33,8 +33,8 @@
|
|
33
33
|
"author": "Vladislav Botvin",
|
34
34
|
"license": "MIT",
|
35
35
|
"devDependencies": {
|
36
|
-
"@types/node": "^22.
|
36
|
+
"@types/node": "^22.9.3",
|
37
37
|
"tsd": "^0.31.2",
|
38
|
-
"typescript": "^5.
|
38
|
+
"typescript": "^5.7.2"
|
39
39
|
}
|
40
40
|
}
|