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 AUDIT_ENVIRONMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Both desktop and mobile are live and drive the same MetaEdit build (`main.js` fr
pnpm run build
eval "$(pnpm run --silent start:e2e-obsidian -- --print-env)"
export HOME="$METAEDIT_E2E_OBSIDIAN_HOME"
pnpm run test:e2e # or: npx vitest run --config vitest.e2e.config.ts <file>
pnpm run test:e2e # or: npx vitest run --config vitest.e2e.config.mts <file>
```
- Harness gotchas (learned this audit):
- `obsidian.dev.eval` returns `undefined` for a sync expression in-process; use `evalJsonAsync` (async IIFE returning an object) for return values.
Expand Down
22 changes: 12 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "pnpm run build && vitest run --config vitest.e2e.config.ts",
"test:e2e": "pnpm run build && vitest run --config vitest.e2e.config.mts",
"obsidian:e2e": "obsidian-e2e run",
"provision:e2e-vault": "obsidian-e2e provision",
"start:e2e-obsidian": "obsidian-e2e start",
Expand All @@ -29,24 +29,24 @@
"node": ">=20.18.1"
},
"devDependencies": {
"@types/node": "26.1.1",
"@types/node": "26.1.2",
"@vitest/coverage-v8": "4.1.10",
"esbuild": "0.28.1",
"esbuild-svelte": "0.9.5",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.4.1",
"eslint-plugin-svelte": "^3.22.0",
"globals": "^17.8.0",
"globals": "^17.9.0",
"obsidian": "1.13.1",
"obsidian-e2e": "^0.9.0",
"svelte": "^5.56.8",
"svelte-check": "^4.7.3",
"svelte-check": "^4.7.4",
"svelte-eslint-parser": "^1.8.0",
"svelte-preprocess": "^6.0.5",
"tslib": "^2.2.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^8.1.5",
"typescript-eslint": "^8.66.0",
"vite": "^8.2.1",
"vitest": "^4.1.10"
},
"pnpm": {
Expand All @@ -56,11 +56,13 @@
],
"overrides": {
"@babel/core@<=7.29.0": "^7.29.6",
"brace-expansion@<1.1.13": "^1.1.16",
"fast-uri@>=3.0.0 <=3.1.3": "^3.1.4",
"brace-expansion@<1.1.18": "^1.1.18",
"brace-expansion@>=2.0.0 <2.1.4": "^2.1.4",
"fast-uri@>=3.0.0 <3.1.5": "^3.1.5",
"handlebars": "^4.7.9",
"js-yaml@>=4.0.0 <=4.1.1": "^4.3.0",
"postcss@<8.5.10": "^8.5.20"
"js-yaml@>=4.0.0 <4.3.1": "^4.3.1",
"nanoid@<3.3.17": "^3.3.17",
"postcss@<8.5.23": "^8.5.23"
}
}
}
Loading