spindb 0.2.3 → 0.2.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/bin/cli.js +3 -1
  2. package/package.json +1 -1
package/bin/cli.js CHANGED
@@ -8,8 +8,10 @@ import { dirname, resolve } from 'path'
8
8
  const __dirname = dirname(fileURLToPath(import.meta.url))
9
9
 
10
10
  // Resolve tsconfig path - it should be in the package root
11
+ const tsconfigPath = resolve(__dirname, '../tsconfig.json')
12
+
11
13
  register({
12
- tsconfig: resolve(__dirname, '../tsconfig.json'),
14
+ tsconfig: tsconfigPath,
13
15
  })
14
16
 
15
17
  await import('../src/bin/cli.ts')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spindb",
3
- "version": "0.2.03",
3
+ "version": "0.2.5",
4
4
  "description": "Spin up local database containers without Docker. A DBngin-like CLI for PostgreSQL.",
5
5
  "type": "module",
6
6
  "bin": {