Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions lana-docs-site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"react-dom": "^19.1.1"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "^3.8.1",
"@docusaurus/tsconfig": "^3.8.1",
"@docusaurus/types": "^3.8.1",
"typescript": "^5.9.2"
"@docusaurus/module-type-aliases": "^3.9.2",
"@docusaurus/tsconfig": "^3.9.2",
"@docusaurus/types": "^3.9.2",
"typescript": "^5.9.3"
},
"browserslist": {
"production": [
Expand Down
5 changes: 2 additions & 3 deletions lana/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,8 @@
"@salesforce/core": "^8.25.1"
},
"devDependencies": {
"@types/node": "~22.16.3",
"@types/node": "~22.16.5",
"@types/vscode": "~1.99.1",
"concurrently": "^9.2.0",
"typescript": "^5.9.2"
"typescript": "^5.9.3"
}
}
6 changes: 3 additions & 3 deletions log-viewer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
"tabulator-tables": "^6.3.1"
},
"devDependencies": {
"@types/tabulator-tables": "^6.2.9",
"postcss": "^8.5.6",
"@types/tabulator-tables": "^6.3.1",
"postcss": "^8.5.8",
"sass": "~1.78.0",
"typescript": "^5.9.2"
"typescript": "^5.9.3"
}
}
5 changes: 2 additions & 3 deletions log-viewer/src/features/soql/services/SOQLParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,8 @@ export class SOQLParser {
async parse(query: string): Promise<SOQLTree> {
// Dynamic import for code splitting. Improves performance by reducing the amount of JS that is loaded and parsed at the start.
// eslint-disable-next-line @typescript-eslint/naming-convention
const { ApexLexer, ApexParser, CaseInsensitiveInputStream } = await import(
'@apexdevtools/apex-parser'
);
const { ApexLexer, ApexParser, CaseInsensitiveInputStream } =
await import('@apexdevtools/apex-parser');
// Dynamic import for code splitting. Improves performance by reducing the amount of JS that is loaded and parsed at the start.
// eslint-disable-next-line @typescript-eslint/naming-convention
const { CharStreams, CommonTokenStream } = await import('antlr4ts');
Expand Down
41 changes: 19 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,37 +2,34 @@
"name": "lana-ws",
"private": true,
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.32.0",
"@rolldown/plugin-node-polyfills": "^1.0.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@eslint/js": "^10.0.1",
"@rolldown/plugin-node-polyfills": "^1.0.3",
"@rollup/plugin-alias": "^6.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@swc/core": "^1.13.3",
"@swc/helpers": "^0.5.17",
"@rollup/plugin-node-resolve": "^16.0.3",
"@swc/core": "^1.15.18",
"@swc/helpers": "^0.5.19",
"@swc/jest": "^0.2.39",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"concurrently": "^9.1.2",
"eslint": "^9.32.0",
"@typescript-eslint/parser": "^8.56.1",
"concurrently": "^9.2.1",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"lint-staged": "^16.1.4",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"rolldown": "1.0.0-beta.34",
"rollup": "^4.46.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"rolldown": "1.0.0-rc.7",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-swc3": "^0.12.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
Expand Down
Loading
Loading