pgsql-deparser 17.12.0 → 17.12.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 +7 -6
package/README.md
CHANGED
|
@@ -147,6 +147,8 @@ Built on the excellent work of several contributors:
|
|
|
147
147
|
* **[Ethan Resnick](https://github.com/ethanresnick)** for the original Node.js N-API bindings
|
|
148
148
|
* **[Zac McCormick](https://github.com/zhm)** for the foundational [node-pg-query-native](https://github.com/zhm/node-pg-query-native) parser
|
|
149
149
|
|
|
150
|
+
---
|
|
151
|
+
|
|
150
152
|
## Related
|
|
151
153
|
|
|
152
154
|
* [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-deparser",
|
|
3
|
-
"version": "17.12.
|
|
3
|
+
"version": "17.12.1",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostgreSQL AST Deparser",
|
|
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
|
"kitchen-sink": "npm run fixtures && npm run fixtures:kitchen-sink",
|
|
@@ -53,10 +53,11 @@
|
|
|
53
53
|
"database"
|
|
54
54
|
],
|
|
55
55
|
"devDependencies": {
|
|
56
|
-
"libpg-query": "17.6.0"
|
|
56
|
+
"libpg-query": "17.6.0",
|
|
57
|
+
"makage": "^0.1.3"
|
|
57
58
|
},
|
|
58
59
|
"dependencies": {
|
|
59
60
|
"@pgsql/types": "^17.6.1"
|
|
60
61
|
},
|
|
61
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "da3ab5c3f032c80958902486ef4fd6dc236e0e12"
|
|
62
63
|
}
|