flowquery 1.0.1 → 1.0.2
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.
|
@@ -47,6 +47,12 @@ jobs:
|
|
|
47
47
|
cp dist/flowquery.min.js flowquery-vscode/flowQueryEngine/
|
|
48
48
|
ls -la flowquery-vscode/flowQueryEngine/
|
|
49
49
|
|
|
50
|
+
- name: Copy to docs folder
|
|
51
|
+
run: |
|
|
52
|
+
echo "Copying flowquery.min.js to docs folder for GitHub Pages..."
|
|
53
|
+
cp dist/flowquery.min.js docs/
|
|
54
|
+
ls -la docs/flowquery.min.js
|
|
55
|
+
|
|
50
56
|
- name: Bump version
|
|
51
57
|
id: version
|
|
52
58
|
run: |
|
|
@@ -61,7 +67,7 @@ jobs:
|
|
|
61
67
|
echo "tag=v${NEW_VERSION}" >> $GITHUB_OUTPUT
|
|
62
68
|
|
|
63
69
|
# Commit the version bump
|
|
64
|
-
git add package.json package-lock.json
|
|
70
|
+
git add package.json package-lock.json docs/flowquery.min.js
|
|
65
71
|
git commit -m "chore: bump version to ${NEW_VERSION} [skip ci]"
|
|
66
72
|
git push
|
|
67
73
|
|
package/dist/parsing/parser.js
CHANGED
|
@@ -52,7 +52,7 @@ const null_1 = __importDefault(require("./components/null"));
|
|
|
52
52
|
* @example
|
|
53
53
|
* ```typescript
|
|
54
54
|
* const parser = new Parser();
|
|
55
|
-
* const ast = parser.parse("unwind [1, 2, 3, 4, 5
|
|
55
|
+
* const ast = parser.parse("unwind [1, 2, 3, 4, 5] as num return num");
|
|
56
56
|
* ```
|
|
57
57
|
*/
|
|
58
58
|
class Parser extends base_parser_1.default {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flowquery",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "A declarative query language for data processing pipelines.",
|
|
5
5
|
"main": "dist/index.node.js",
|
|
6
6
|
"types": "dist/index.node.d.ts",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"jest": "^29.7.0",
|
|
38
38
|
"ts-jest": "^29.2.5",
|
|
39
39
|
"ts-loader": "^9.5.1",
|
|
40
|
+
"ts-node": "^10.9.2",
|
|
40
41
|
"typedoc": "^0.28.14",
|
|
41
42
|
"typescript": "^5.7.2",
|
|
42
43
|
"webpack": "^5.97.1",
|
package/src/parsing/parser.ts
CHANGED
|
@@ -50,7 +50,7 @@ import Null from "./components/null";
|
|
|
50
50
|
* @example
|
|
51
51
|
* ```typescript
|
|
52
52
|
* const parser = new Parser();
|
|
53
|
-
* const ast = parser.parse("unwind [1, 2, 3, 4, 5
|
|
53
|
+
* const ast = parser.parse("unwind [1, 2, 3, 4, 5] as num return num");
|
|
54
54
|
* ```
|
|
55
55
|
*/
|
|
56
56
|
class Parser extends BaseParser {
|