epiq 0.1.5 → 0.1.6

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.
Files changed (2) hide show
  1. package/dist/cli.js +92 -92
  2. package/package.json +4 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "epiq",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "description": "EPIQ - CLI based issue tracker",
@@ -12,25 +12,23 @@
12
12
  },
13
13
  "scripts": {
14
14
  "clean": "node -e \"import('node:fs').then(fs => fs.rmSync('dist', { recursive: true, force: true }))\"",
15
- "build": "tsc --noEmit",
16
- "build:publish": "pnpm clean && esbuild source/cli.tsx --bundle --platform=node --format=esm --target=node16 --minify --outfile=dist/cli.js --banner:js='#!/usr/bin/env node'",
15
+ "build": "pnpm clean && esbuild source/cli.tsx --bundle --platform=node --format=esm --target=node16 --minify --outfile=dist/cli.js --banner:js='#!/usr/bin/env node'",
17
16
  "dev": "tsc --watch --noEmit",
18
17
  "dev:start": "IS_LOCAL=true tsx source/cli.tsx",
19
18
  "start": "node dist/cli.js",
20
19
  "start:debug": "IS_LOCAL=true node dist/cli.js",
21
20
  "test": "prettier --check \"**/*.{ts,tsx}\" && vitest run",
22
- "prepack": "pnpm build:publish",
21
+ "prepack": "pnpm build",
23
22
  "pack:check": "rm -f epiq-*.tgz && npm pack --json",
24
23
  "publish:tarball": "FILE=$(ls -t epiq-*.tgz | head -n 1) && echo \"Publishing $FILE\" && npm publish \"$FILE\"",
25
24
  "publish:dry": "rm -f epiq-*.tgz && npm pack && FILE=$(ls -t epiq-*.tgz | head -n 1) && npm publish --dry-run \"$FILE\"",
26
- "release": "pnpm test && pnpm pack:check && pnpm publish:tarball"
25
+ "release": "pnpm build && pnpm test && pnpm pack:check && pnpm publish:tarball"
27
26
  },
28
27
  "files": [
29
28
  "dist"
30
29
  ],
31
30
  "dependencies": {
32
31
  "ink": "^6.8.0",
33
- "json-stringify-pretty-compact": "^4.0.0",
34
32
  "marked": "^17.0.3",
35
33
  "marked-terminal": "^7.3.0",
36
34
  "meow": "^14.1.0",