@stacksjs/stx 0.0.7 → 0.0.10

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/bin/cli.js +1 -1
  2. package/package.json +3 -3
package/dist/bin/cli.js CHANGED
@@ -605,7 +605,7 @@ class CAC extends EventEmitter {
605
605
  }
606
606
  }
607
607
  // package.json
608
- var version = "0.0.7";
608
+ var version = "0.0.10";
609
609
 
610
610
  // bin/cli.ts
611
611
  var cli = new CAC("stx");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/stx",
3
3
  "type": "module",
4
- "version": "0.0.7",
4
+ "version": "0.0.10",
5
5
  "description": "A Bun plugin that allows for using Laravel Blade-like syntax.",
6
6
  "author": "Chris Breuer <chris@stacksjs.org>",
7
7
  "license": "MIT",
@@ -43,7 +43,7 @@
43
43
  "dist"
44
44
  ],
45
45
  "scripts": {
46
- "build": "bun --bun build.ts && bun run compile",
46
+ "build": "bun --bun build.ts",
47
47
  "compile": "bun build ./bin/cli.ts --compile --minify --outfile ./bin/stx",
48
48
  "compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64",
49
49
  "compile:linux-x64": "bun build ./bin/cli.ts --compile --minify --target=bun-linux-x64 --outfile ./bin/stx-linux-x64",
@@ -62,7 +62,7 @@
62
62
  "lint:fix": "bunx eslint . --fix",
63
63
  "fresh": "bunx rimraf node_modules/ bun.lock && bun i",
64
64
  "changelog": "bunx changelogen --output CHANGELOG.md",
65
- "prepublishOnly": "bun run build",
65
+ "prepublishOnly": "bun run build && bun run compile:all && bun run zip:all",
66
66
  "release": "bun run changelog && bunx bumpp package.json --all",
67
67
  "test": "bun test",
68
68
  "typecheck": "bun tsc --noEmit"