pgsql-parser 17.9.0 → 17.9.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.
- package/README.md +2 -0
- package/package.json +9 -6
package/README.md
CHANGED
|
@@ -132,6 +132,8 @@ Built on the excellent work of several contributors:
|
|
|
132
132
|
* **[Ethan Resnick](https://github.com/ethanresnick)** for the original Node.js N-API bindings
|
|
133
133
|
* **[Zac McCormick](https://github.com/zhm)** for the foundational [node-pg-query-native](https://github.com/zhm/node-pg-query-native) parser
|
|
134
134
|
|
|
135
|
+
---
|
|
136
|
+
|
|
135
137
|
## Related
|
|
136
138
|
|
|
137
139
|
* [pgsql-parser](https://www.npmjs.com/package/pgsql-parser): The real PostgreSQL parser for Node.js, providing symmetric parsing and deparsing of SQL statements with actual PostgreSQL parser integration.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pgsql-parser",
|
|
3
|
-
"version": "17.9.
|
|
3
|
+
"version": "17.9.1",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "The real PostgreSQL query parser",
|
|
6
6
|
"main": "index.js",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"url": "https://github.com/launchql/pgsql-parser/issues"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
|
-
"copy": "
|
|
24
|
-
"clean": "
|
|
25
|
-
"
|
|
23
|
+
"copy": "makage assets",
|
|
24
|
+
"clean": "makage clean dist",
|
|
25
|
+
"prepublishOnly": "npm run build",
|
|
26
26
|
"build": "npm run clean && tsc && tsc -p tsconfig.esm.json && npm run copy",
|
|
27
27
|
"build:dev": "npm run clean && tsc --declarationMap && tsc -p tsconfig.esm.json && npm run copy",
|
|
28
28
|
"lint": "eslint . --fix",
|
|
@@ -43,7 +43,10 @@
|
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@pgsql/types": "^17.6.1",
|
|
45
45
|
"libpg-query": "17.6.0",
|
|
46
|
-
"pgsql-deparser": "
|
|
46
|
+
"pgsql-deparser": "17.12.1"
|
|
47
47
|
},
|
|
48
|
-
"
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"makage": "^0.1.3"
|
|
50
|
+
},
|
|
51
|
+
"gitHead": "da3ab5c3f032c80958902486ef4fd6dc236e0e12"
|
|
49
52
|
}
|