skilluse 0.1.4 → 0.1.5

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/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -32456,7 +32456,7 @@ class Pastel {
32456
32456
  // package.json
32457
32457
  var package_default = {
32458
32458
  name: "skilluse",
32459
- version: "0.1.4",
32459
+ version: "0.1.5",
32460
32460
  description: "CLI tool for managing and installing AI Coding Agent Skills",
32461
32461
  main: "dist/index.js",
32462
32462
  bin: {
@@ -32481,7 +32481,7 @@ var package_default = {
32481
32481
  },
32482
32482
  scripts: {
32483
32483
  dev: "bun --watch src/index.tsx",
32484
- build: "bun build src/index.tsx --outdir dist --target node --external react-devtools-core",
32484
+ build: `bun build src/index.tsx --outdir dist --target node --define 'process.env.DEV="false"' --external react-devtools-core`,
32485
32485
  "build:bin": `bun build src/cli.tsx --compile --minify --sourcemap --define 'process.env.DEV="false"' --outfile dist/skilluse`,
32486
32486
  "build:all": "bun run scripts/build-all.ts",
32487
32487
  typecheck: "tsc --noEmit",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skilluse",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "CLI tool for managing and installing AI Coding Agent Skills",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "scripts": {
27
27
  "dev": "bun --watch src/index.tsx",
28
- "build": "bun build src/index.tsx --outdir dist --target node --external react-devtools-core",
28
+ "build": "bun build src/index.tsx --outdir dist --target node --define 'process.env.DEV=\"false\"' --external react-devtools-core",
29
29
  "build:bin": "bun build src/cli.tsx --compile --minify --sourcemap --define 'process.env.DEV=\"false\"' --outfile dist/skilluse",
30
30
  "build:all": "bun run scripts/build-all.ts",
31
31
  "typecheck": "tsc --noEmit",