Skip to content

Commit aed5a00

Browse files
committed
chore: fix docs site build
1 parent 2d091ae commit aed5a00

4 files changed

Lines changed: 82 additions & 2 deletions

File tree

.release-it.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
},
55
"github": {
66
"release": true,
7-
"assets": ["jetstreamapp-soql-parser-js-${version}.tgz", "dist/soql-parser-js-lwc-v${version}.zip", "dist/lwc/soqlParserJs.js"]
7+
"assets": ["jetstreamapp-soql-parser-js-${version}.tgz", "dist/soql-parser-js-lwc-v${version}.zip"]
88
},
99
"npm": {
1010
"skipChecks": true

docs/static/sample-queries-json.json

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,14 @@
128128
"SELECT Id FROM Account WHERE (NOT Invoice_Type__c LIKE '%Usage%')",
129129
"SELECT Id, City FROM Lead WHERE NOT ((NOT (City LIKE '%LHR%')) AND City LIKE '%KHR%')",
130130
"SELECT Name FROM Invoice__c WHERE Balance__c < USD-500",
131-
"SELECT Name, Id FROM Contact USING SCOPE mru ORDER BY Name ASC"
131+
"SELECT Name, Id FROM Contact USING SCOPE mru ORDER BY Name ASC",
132+
"SELECT Id FROM Task USING SCOPE delegated",
133+
"SELECT Id FROM Account USING SCOPE everything",
134+
"SELECT Id FROM Account USING SCOPE mine",
135+
"SELECT Id FROM ProcessInstanceWorkitem USING SCOPE mine_and_my_groups",
136+
"SELECT Id FROM Account USING SCOPE my_territory",
137+
"SELECT Id FROM Account USING SCOPE my_team_territory",
138+
"SELECT Id FROM Account USING SCOPE team",
139+
"SELECT Id FROM Account USING SCOPE scopingRule",
140+
"SELECT Id, Name FROM Account USING SCOPE myRule"
132141
]

package-lock.json

Lines changed: 70 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@
5858
"npm-run-all": "^4.1.5",
5959
"prettier": "^3.8.1",
6060
"release-it": "^20.0.1",
61+
"tsx": "^4.21.0",
6162
"typescript": "^5.9.3",
6263
"vitest": "^4.1.0"
6364
},

0 commit comments

Comments
 (0)