@sppg2001/atomize 1.2.0 → 1.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sppg2001/atomize",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Automatically generate tasks from user stories with smart templates",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",
@@ -24,7 +24,7 @@
24
24
  "dev": "ATOMIZE_DEV=true bun run src/cli/index.ts",
25
25
  "build": "bun run typecheck && bun run build:bun",
26
26
  "postbuild": "node make-executable.js",
27
- "build:bun": "bun build ./src/cli/index.ts --outdir ./dist/cli --target node --format esm",
27
+ "build:bun": "node ./scripts/prepare-dist.mjs && bun build ./src/cli/index.ts --outdir ./dist/cli --target node --format esm --external keytar",
28
28
  "build:standalone": "bun build src/cli/index.ts --compile --outfile atomize",
29
29
  "prepublishOnly": "npm run build",
30
30
  "test": "bun test",
@@ -34,7 +34,7 @@
34
34
  "test:coverage": "bun test --coverage --coverage-reporter=lcov",
35
35
  "typecheck": "tsc --noEmit",
36
36
  "validate": "bun run src/cli/index.ts validate",
37
- "validate:package": "test -d dist && test -f dist/cli/index.js && test -d templates/presets",
37
+ "validate:package": "node ./scripts/validate-package.mjs",
38
38
  "check": "bun typecheck && bun test",
39
39
  "lint": "bunx biome check --max-diagnostics 100",
40
40
  "lint:fix": "bunx biome check --fix --max-diagnostics 100",
Binary file