This commit is contained in:
Alexander Brown
2026-03-26 19:14:37 -07:00
committed by DrJKL
parent e2b93bd0e5
commit 98e3742ada
4 changed files with 14 additions and 3 deletions

View File

@@ -53,5 +53,7 @@
}
.map-node {
transition: opacity 0.3s ease, transform 0.3s ease;
transition:
opacity 0.3s ease,
transform 0.3s ease;
}

View File

@@ -119,7 +119,9 @@
}
.map-node circle {
transition: fill 0.3s ease, stroke 0.3s ease;
transition:
fill 0.3s ease,
stroke 0.3s ease;
}
.map-node.locked circle {

View File

@@ -12,7 +12,11 @@ export default {
'./**/*.js': (stagedFiles: string[]) => formatAndEslint(stagedFiles),
'./**/*.{ts,tsx,vue,mts,json,yaml,md}': (stagedFiles: string[]) => {
const commands = [...formatAndEslint(stagedFiles), 'pnpm typecheck']
const lintable = stagedFiles.filter((f) => !f.endsWith('lock.yaml'))
const commands = [
...(lintable.length > 0 ? formatAndEslint(lintable) : []),
'pnpm typecheck'
]
const hasBrowserTestsChanges = stagedFiles
.map((f) => path.relative(process.cwd(), f).replace(/\\/g, '/'))

3
pnpm-lock.yaml generated
View File

@@ -831,6 +831,9 @@ importers:
apps/architecture-adventure:
devDependencies:
tsx:
specifier: 'catalog:'
version: 4.19.4
typescript:
specifier: 'catalog:'
version: 5.9.3