gorsee 0.2.3 → 0.2.4

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/bin/gorsee.js +2 -14
  2. package/package.json +3 -1
package/bin/gorsee.js CHANGED
@@ -1,14 +1,2 @@
1
- #!/usr/bin/env node
2
- import { execSync } from "child_process";
3
- import { join, dirname } from "path";
4
- import { fileURLToPath } from "url";
5
-
6
- const __dirname = dirname(fileURLToPath(import.meta.url));
7
- const cli = join(__dirname, "..", "src", "cli", "index.ts");
8
- const args = process.argv.slice(2).join(" ");
9
-
10
- try {
11
- execSync(`bun ${cli} ${args}`, { stdio: "inherit" });
12
- } catch (e) {
13
- process.exit(e.status || 1);
14
- }
1
+ #!/usr/bin/env bun
2
+ import "../src/cli/index.ts"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gorsee",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Full-stack TypeScript framework — islands, reactive WebSocket, optimistic mutations, built-in auth, type-safe routes",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -66,6 +66,8 @@
66
66
  "check": "tsc --noEmit",
67
67
  "dev": "bun run src/dev.ts",
68
68
  "release:check": "node scripts/release-check.mjs",
69
+ "release:smoke": "node scripts/release-smoke.mjs",
70
+ "release:verify": "bun run check && bun test && npm run release:check",
69
71
  "prepublishOnly": "bun run check"
70
72
  },
71
73
  "engines": {