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
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"langchain": "^0.2.12",
"lru-cache": "^10.2.2",
"lunr": "^2.3.9",
"minimatch": "^5.1.2",
"minimatch": "^5.1.9",
"moo": "^0.5.1",
"open": "^8.2.1",
"openapi-diff": "^0.23.6",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@types/jest": "^29.4.1",
"@types/js-yaml": "^4.0.5",
"@types/nock": "^11.1.0",
"@types/node": "^17.0.2",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
Expand Down
4 changes: 3 additions & 1 deletion packages/components/src/components/trace/TraceEventBlock.vue
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,9 @@ export default {

.event-block
.trace
.event-block:not(.event-block--one-child):not(.event-block--first-child):not(.event-block--last-child) {
.event-block:not(.event-block--one-child):not(.event-block--first-child):not(
.event-block--last-child
) {
position: relative;

&::before {
Expand Down
5 changes: 2 additions & 3 deletions packages/scanner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"@types/glob": "^7.2.0",
"@types/jest": "^29.4.1",
"@types/js-yaml": "^4.0.3",
"@types/lru-cache": "^5.1.1",
"@types/node": "^16.7.10",
"@types/sinon": "^10.0.11",
"@types/tar-stream": "^2.2.2",
Expand Down Expand Up @@ -78,8 +77,8 @@
"glob": "7.2.3",
"inquirer": "^8.1.2",
"js-yaml": "^4.1.0",
"lru-cache": "^6.0.0",
"minimatch": "^5.1.2",
"lru-cache": "^10",
"minimatch": "^5.1.9",
"octokit": "^2.0.19",
"openapi-diff": "^0.23.6",
"ora": "~5",
Expand Down
4 changes: 2 additions & 2 deletions packages/scanner/src/appMapIndex.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import { AppMap, normalizeSQL, parseSQL, Event } from '@appland/models';
import { QueryAST } from './types';
import LRUCache from 'lru-cache';
import { LRUCache } from 'lru-cache';

const NormalizedSQLBySQLString = new LRUCache<string, string>({ max: 10000 });
const ASTBySQLString = new LRUCache<string, QueryAST | 'parse-error'>({ max: 1000 });
const ASTBySQLString = new LRUCache<string, NonNullable<QueryAST> | 'parse-error'>({ max: 1000 });

Comment thread
dividedmind marked this conversation as resolved.
export default class AppMapIndex {
constructor(public appMap: AppMap) {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ async function buildBuiltinCheck(config: CheckConfig): Promise<Check> {
console.log(`Loaded rule: ${rule}`);
}

let options: typeof rule['Options'];
let options: (typeof rule)['Options'];
if (rule.Options) {
options = new rule.Options();
} else {
Expand Down
2 changes: 1 addition & 1 deletion packages/scanner/src/scan.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable @typescript-eslint/no-empty-function */
/* eslint-disable @typescript-eslint/naming-convention */
/* eslint-disable @typescript-eslint/no-unused-vars */
import LRUCache from 'lru-cache';
import { LRUCache } from 'lru-cache';
import assert from 'assert';
import { readFile } from 'fs/promises';
import { warn } from 'console';
Expand Down
2 changes: 1 addition & 1 deletion packages/search/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"ts-jest": "^29.2.5",
"tsc": "^2.0.4",
"typescript": "^5",
"typescript-eslint": "^8.11.0"
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"better-sqlite3": "^11.9.1",
Expand Down
Loading
Loading