qlogicae_aklot 1.4.16 → 1.4.17
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 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qlogicae_aklot",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.17",
|
|
4
4
|
"author": "Vaughn Cedric L. Araneta",
|
|
5
5
|
"main": "./qlogicae/aklot1/index.js",
|
|
6
6
|
"module": "index.ts",
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"workflow:test:unit": "bun run build && bun run test:unit",
|
|
47
47
|
"workflow:test:benchmark": "bun run build && bun run test:benchmark",
|
|
48
48
|
"workflow:deploy:pre": "bun run build && git add . && git commit -m 'deployment preparation' || true",
|
|
49
|
-
"workflow:deploy:major": "bun run workflow:deploy:pre && npm version major && bun run workflow:deploy:post",
|
|
50
|
-
"workflow:deploy:minor": "bun run workflow:deploy:pre && npm version minor && bun run workflow:deploy:post",
|
|
51
|
-
"workflow:deploy:patch": "bun run workflow:deploy:pre && npm version patch && bun run workflow:deploy:post",
|
|
52
|
-
"workflow:deploy:post": "(
|
|
49
|
+
"workflow:deploy:major": "bun run workflow:deploy:pre && npm version major --no-git-tag-version && bun run workflow:deploy:post",
|
|
50
|
+
"workflow:deploy:minor": "bun run workflow:deploy:pre && npm version minor --no-git-tag-version && bun run workflow:deploy:post",
|
|
51
|
+
"workflow:deploy:patch": "bun run workflow:deploy:pre && npm version patch --no-git-tag-version && bun run workflow:deploy:post",
|
|
52
|
+
"workflow:deploy:post": "(bun publish && git push) || (npm login && bun publish && git push) || (npm login && bun publish && git push)"
|
|
53
53
|
},
|
|
54
54
|
"type": "module",
|
|
55
55
|
"types": "./qlogicae/aklot1/index.d.ts"
|