pgterra 0.2.4 → 0.2.6
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/dist/index.js +53 -2812
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgterra",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Declarative schema management for Postgres",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"postgres",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
},
|
|
44
44
|
"scripts": {
|
|
45
45
|
"dev": "bun run --watch src/index.ts",
|
|
46
|
-
"build": "bun build src/index.ts --outdir ./dist --target node",
|
|
46
|
+
"build": "bun build src/index.ts --outdir ./dist --target node --external libpg-query",
|
|
47
47
|
"prepublishOnly": "bun run build",
|
|
48
48
|
"apply": "bun run src/index.ts apply",
|
|
49
49
|
"test": "bun --env-file=.env test src/test/tables.test.ts src/test/columns/constraints/ src/test/columns/core-operations/ src/test/columns/edge-cases/ src/test/columns/type-conversions/ src/test/indexes/ src/test/utils.ts",
|