pg-ast 2.3.8 → 2.3.9
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 -1
- package/package.json +7 -6
package/README.md
CHANGED
|
@@ -51,6 +51,8 @@ const node = ast.A_Expr({
|
|
|
51
51
|
const sqlCode = deparse([node]);
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
+
---
|
|
55
|
+
|
|
54
56
|
## Education and Tutorials
|
|
55
57
|
|
|
56
58
|
1. 🚀 [Quickstart: Getting Up and Running](https://launchql.com/learn/quickstart)
|
|
@@ -125,4 +127,3 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
125
127
|
AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
|
|
126
128
|
|
|
127
129
|
No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.
|
|
128
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pg-ast",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.9",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostgreSQL ASTs in JS",
|
|
6
6
|
"main": "index.js",
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"url": "https://github.com/launchql/launchql/issues"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
|
-
"
|
|
24
|
-
"
|
|
23
|
+
"clean": "makage clean",
|
|
24
|
+
"copy": "makage assets",
|
|
25
25
|
"prepack": "npm run build",
|
|
26
|
-
"build": "npm run build:proto &&
|
|
27
|
-
"build:dev": "
|
|
26
|
+
"build": "npm run build:proto && makage build",
|
|
27
|
+
"build:dev": "makage build --dev",
|
|
28
28
|
"build:proto": "ts-node scripts/pg-proto-parser",
|
|
29
29
|
"lint": "eslint . --fix",
|
|
30
30
|
"test": "jest",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"parse"
|
|
38
38
|
],
|
|
39
39
|
"devDependencies": {
|
|
40
|
+
"makage": "^0.1.6",
|
|
40
41
|
"pg-proto-parser": "^1.30.1",
|
|
41
42
|
"pgsql-deparser": "^17.12.1"
|
|
42
43
|
},
|
|
@@ -44,5 +45,5 @@
|
|
|
44
45
|
"@pgsql/types": "^17.6.1",
|
|
45
46
|
"nested-obj": "0.1.1"
|
|
46
47
|
},
|
|
47
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "e4643c07b6a961b964bbb132308366fc549504a1"
|
|
48
49
|
}
|