spindb 0.2.1 → 0.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/bin/cli.js CHANGED
@@ -2,6 +2,9 @@
2
2
 
3
3
  import { register } from 'tsx/esm/api'
4
4
 
5
- register()
5
+ // Explicitly set tsconfig path for proper path alias resolution
6
+ register({
7
+ tsconfig: './tsconfig.json',
8
+ })
6
9
 
7
10
  await import('../src/bin/cli.ts')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spindb",
3
- "version": "0.2.01",
3
+ "version": "0.2.02",
4
4
  "description": "Spin up local database containers without Docker. A DBngin-like CLI for PostgreSQL.",
5
5
  "type": "module",
6
6
  "bin": {
package/tsconfig.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "sourceMap": true,
18
18
  "baseUrl": ".",
19
19
  "paths": {
20
- "@/*": ["./src/*"]
20
+ "@/*": ["src/*"]
21
21
  },
22
22
  "allowImportingTsExtensions": true,
23
23
  "noEmit": true