pgsql-parser 17.7.1 → 17.7.3
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/README.md +1 -1
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ npm install pgsql-parser
|
|
|
34
34
|
|
|
35
35
|
The package exports both async and sync methods. Async methods handle initialization automatically, while sync methods require explicit initialization.
|
|
36
36
|
|
|
37
|
-
⚠️ If you don't need the parser functionality, consider using the TS-only (no WASM, zero dependencies) [`pgsql-deparser`](https://github.com/launchql/pgsql-parser/tree/main/packages/deparser) for a super fast, lightweight deparser. Battle-tested with 23,000+ SQL statements 🚀
|
|
37
|
+
⚠️ If you don't need the parser functionality, consider using the TS-only (no WASM, zero runtime dependencies) [`pgsql-deparser`](https://github.com/launchql/pgsql-parser/tree/main/packages/deparser) for a super fast, lightweight deparser. Battle-tested with 23,000+ SQL statements 🚀
|
|
38
38
|
|
|
39
39
|
### Async Methods (Recommended)
|
|
40
40
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgsql-parser",
|
|
3
|
-
"version": "17.7.
|
|
3
|
+
"version": "17.7.3",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "The real PostgreSQL query parser",
|
|
6
6
|
"main": "index.js",
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
|
|
28
28
|
"lint": "eslint . --fix",
|
|
29
29
|
"test": "jest",
|
|
30
|
-
"test:watch": "jest --watch"
|
|
30
|
+
"test:watch": "jest --watch",
|
|
31
|
+
"test:ast": "ts-node scripts/test-ast.ts"
|
|
31
32
|
},
|
|
32
33
|
"keywords": [
|
|
33
34
|
"sql",
|
|
@@ -40,8 +41,8 @@
|
|
|
40
41
|
],
|
|
41
42
|
"dependencies": {
|
|
42
43
|
"@pgsql/types": "^17.6.1",
|
|
43
|
-
"libpg-query": "17.5.
|
|
44
|
-
"pgsql-deparser": "^17.8.
|
|
44
|
+
"libpg-query": "17.5.3",
|
|
45
|
+
"pgsql-deparser": "^17.8.2"
|
|
45
46
|
},
|
|
46
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "309bfda0a8a4335ff29093763ad0f14c8a71ee21"
|
|
47
48
|
}
|