obsidian-integration-testing 2.3.1 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obsidian-integration-testing",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Simplifies integration testing of Obsidian plugins.",
5
5
  "keywords": [
6
6
  "obsidian",
@@ -0,0 +1,15 @@
1
+ diff --git a/node_modules/vite/dist/node/index.d.ts b/node_modules/vite/dist/node/index.d.ts
2
+ index f5c0ce2..81382de 100644
3
+ --- a/node_modules/vite/dist/node/index.d.ts
4
+ +++ b/node_modules/vite/dist/node/index.d.ts
5
+ @@ -2766,7 +2766,9 @@ interface ConfigPluginContext extends Omit<MinimalPluginContext, "meta" | "envir
6
+ }
7
+ interface MinimalPluginContextWithoutEnvironment extends Omit<MinimalPluginContext, "environment"> {}
8
+ declare module "rolldown" {
9
+ - interface MinimalPluginContext extends PluginContextExtension {}
10
+ + interface MinimalPluginContext {
11
+ + environment: Environment;
12
+ + }
13
+ interface PluginContextMeta extends PluginContextMetaExtension {}
14
+ }
15
+ /**