@uptimizr/db 1.0.0 → 1.0.1

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.
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ // Thin launcher so the bin exists at install time (pnpm links workspace bins before
3
+ // `dist/` is built and warned "Failed to create bin" for every dependant otherwise).
4
+ import "../dist/cli/migrate.js";
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env node
2
+ // Thin launcher so the bin exists at install time (pnpm links workspace bins before
3
+ // `dist/` is built and warned "Failed to create bin" for every dependant otherwise).
4
+ import "../dist/cli/createProject.js";
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uptimizr/db",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "OSS storage contracts (dialect-agnostic query layer, neutral event/metadata types) and the single-file DuckDB store for Uptimizr.",
5
5
  "keywords": [
6
6
  "uptimizr",
@@ -39,11 +39,12 @@
39
39
  }
40
40
  },
41
41
  "bin": {
42
- "uptimizr-db-migrate": "./dist/cli/migrate.js",
43
- "uptimizr-db-new-project": "./dist/cli/createProject.js"
42
+ "uptimizr-db-migrate": "./bin/uptimizr-db-migrate.js",
43
+ "uptimizr-db-new-project": "./bin/uptimizr-db-new-project.js"
44
44
  },
45
45
  "files": [
46
46
  "dist",
47
+ "bin",
47
48
  "README.md",
48
49
  "LICENSE",
49
50
  "AGENTS.md",