@fbltd/async 1.0.1 → 1.0.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/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fbltd/async",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "R&D async tools",
|
|
5
5
|
"exports": {
|
|
6
6
|
"require": "./dist/bin/index.js",
|
|
@@ -19,8 +19,10 @@
|
|
|
19
19
|
"clearAll": "npm run clearDist && npm run clearModules",
|
|
20
20
|
"build": "cd src/react && npm run build && cd ../../ && npm run clearAll && npm i && mkdir dist && tsc",
|
|
21
21
|
"test": "jest --config=./__tests__/jest.config.js",
|
|
22
|
-
"
|
|
23
|
-
"
|
|
22
|
+
"postVersionCommit": "git commit -m='post version commit' || true",
|
|
23
|
+
"postVersionPush": "git push || true",
|
|
24
|
+
"patch": "npm version patch && npm run postVersionCommit && npm run postVersionPush",
|
|
25
|
+
"deploy": "npm run build && npm run test && npm run patch && npm publish && npm run clearDist"
|
|
24
26
|
},
|
|
25
27
|
"author": "",
|
|
26
28
|
"license": "ISC",
|