epiq 0.1.1 → 0.1.2
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 +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "epiq",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "EPIQ - CLI based issue tracker",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"start:debug": "IS_LOCAL=true node dist/cli.js",
|
|
21
21
|
"test": "prettier --check \"**/*.{ts,tsx}\" && vitest run",
|
|
22
22
|
"prepack": "pnpm build:publish",
|
|
23
|
-
"pack:check": "npm pack &&
|
|
23
|
+
"pack:check": "rm -f epiq-*.tgz && npm pack && TAR=$(ls -t epiq-*.tgz | head -n 1) && echo \"$TAR\" && tar -tf \"$TAR\"",
|
|
24
24
|
"publish:dry": "npm publish --dry-run",
|
|
25
|
-
"release": "pnpm
|
|
25
|
+
"release": "pnpm test && pnpm pack:check && npm publish"
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
28
|
"dist"
|