obsidian-integration-testing 4.1.1 → 4.1.4

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.
@@ -21,7 +21,7 @@ __export(library_exports, {
21
21
  LIBRARY_VERSION: () => LIBRARY_VERSION
22
22
  });
23
23
  module.exports = __toCommonJS(library_exports);
24
- const LIBRARY_VERSION = false ? "dev" : "4.1.0";
24
+ const LIBRARY_VERSION = false ? "dev" : "4.1.3";
25
25
  // Annotate the CommonJS export names for ESM import in node:
26
26
  0 && (module.exports = {
27
27
  LIBRARY_VERSION
@@ -1,4 +1,4 @@
1
- const LIBRARY_VERSION = false ? "dev" : "4.1.0";
1
+ const LIBRARY_VERSION = false ? "dev" : "4.1.3";
2
2
  export {
3
3
  LIBRARY_VERSION
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obsidian-integration-testing",
3
- "version": "4.1.1",
3
+ "version": "4.1.4",
4
4
  "description": "Simplifies integration testing of Obsidian plugins.",
5
5
  "keywords": [
6
6
  "obsidian",
@@ -19,9 +19,6 @@
19
19
  "license": "MIT",
20
20
  "author": "Michael Naumov",
21
21
  "type": "module",
22
- "main": "dist/lib/cjs/index.cjs",
23
- "module": "dist/lib/esm/index.mjs",
24
- "types": "dist/lib/esm/index.d.mts",
25
22
  "exports": {
26
23
  ".": {
27
24
  "import": {
@@ -62,6 +59,9 @@
62
59
  }
63
60
  }
64
61
  },
62
+ "main": "dist/lib/cjs/index.cjs",
63
+ "module": "dist/lib/esm/index.mjs",
64
+ "types": "dist/lib/esm/index.d.mts",
65
65
  "files": [
66
66
  "!dist/*.tgz",
67
67
  "**/package.json",
@@ -81,28 +81,46 @@
81
81
  "commit": "jiti scripts/commit.ts",
82
82
  "format": "jiti scripts/format.ts",
83
83
  "format:check": "jiti scripts/format-check.ts",
84
+ "postinstall": "node scripts/postinstall.mjs",
84
85
  "lint": "jiti scripts/lint.ts",
85
86
  "lint:fix": "jiti scripts/lint-fix.ts",
86
87
  "lint:md": "jiti scripts/lint-md.ts",
87
88
  "lint:md:fix": "jiti scripts/lint-md-fix.ts",
88
- "postinstall": "node scripts/postinstall.mjs",
89
89
  "prepare": "jiti scripts/prepare.ts",
90
90
  "spellcheck": "jiti scripts/spellcheck.ts",
91
91
  "test": "jiti scripts/test.ts",
92
92
  "test:coverage": "jiti scripts/test-coverage.ts",
93
- "test:jest": "jiti scripts/test-jest.ts",
94
93
  "test:integration": "jiti scripts/test-integration.ts",
94
+ "test:jest": "jiti scripts/test-jest.ts",
95
95
  "test:watch": "jiti scripts/test-watch.ts",
96
96
  "version": "jiti scripts/version.ts"
97
97
  },
98
+ "overrides": {
99
+ "@antfu/utils": "9.2.0",
100
+ "@sinonjs/fake-timers": "13.0.5",
101
+ "electron": "42.0.1",
102
+ "eslint-plugin-import": "$eslint-plugin-import-x",
103
+ "lodash": "4.18.1",
104
+ "lodash-es": "4.18.1",
105
+ "mermaid": "11.15.0",
106
+ "tmp": "0.2.5",
107
+ "type-fest": "$type-fest",
108
+ "typescript": "$typescript",
109
+ "urlpattern-polyfill": "npm:dry-uninstall"
110
+ },
111
+ "dependencies": {
112
+ "puppeteer-core": "^25.0.2",
113
+ "webdriverio": "9.27.0"
114
+ },
98
115
  "devDependencies": {
99
- "@commitlint/cli": "^20.5.3",
100
- "@commitlint/config-conventional": "^20.5.3",
101
- "@commitlint/types": "^20.5.0",
116
+ "@commitlint/cli": "^21.0.1",
117
+ "@commitlint/config-conventional": "^21.0.1",
118
+ "@commitlint/types": "^21.0.1",
102
119
  "@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
103
- "@eslint/compat": "^2.0.5",
104
- "@eslint/config-helpers": "^0.5.5",
120
+ "@eslint/compat": "^2.1.0",
121
+ "@eslint/config-helpers": "^0.6.0",
105
122
  "@eslint/js": "^10.0.1",
123
+ "@obsidian-typings/obsidian-public-latest": "^6.0.0",
106
124
  "@stylistic/eslint-plugin": "^5.10.0",
107
125
  "@total-typescript/ts-reset": "^0.6.1",
108
126
  "@tsconfig/strictest": "^2.0.8",
@@ -110,19 +128,18 @@
110
128
  "@types/markdown-it": "^14.1.2",
111
129
  "@types/semver": "^7.7.1",
112
130
  "@types/turndown": "^5.0.6",
113
- "@typescript-eslint/rule-tester": "^8.59.2",
114
- "@typescript-eslint/utils": "^8.59.2",
115
- "@vitest/coverage-v8": "^4.1.5",
131
+ "@typescript-eslint/rule-tester": "^8.59.3",
132
+ "@typescript-eslint/utils": "^8.59.3",
133
+ "@vitest/coverage-v8": "^4.1.6",
116
134
  "@vitest/runner": "4.1.0",
117
135
  "@wdio/protocols": "9.27.0",
118
136
  "@wdio/types": "9.27.0",
119
137
  "better-typescript-lib": "^2.12.0",
120
- "commitizen": "^4.3.1",
121
138
  "cspell": "^10.0.0",
122
- "cz-conventional-changelog": "^3.3.0",
139
+ "czg": "^1.13.1",
123
140
  "dprint": "^0.54.0",
124
141
  "esbuild": "^0.28.0",
125
- "eslint": "^10.3.0",
142
+ "eslint": "^10.4.0",
126
143
  "eslint-import-resolver-typescript": "^4.4.4",
127
144
  "eslint-plugin-import-x": "^4.16.2",
128
145
  "eslint-plugin-jsdoc": "^62.9.0",
@@ -130,7 +147,8 @@
130
147
  "eslint-plugin-tsdoc": "^0.5.2",
131
148
  "globals": "^17.6.0",
132
149
  "husky": "^9.1.7",
133
- "jest": "^30.3.0",
150
+ "jest": "^30.4.2",
151
+ "jest-config": "^30.4.2",
134
152
  "jiti": "^2.7.0",
135
153
  "jsdom": "^29.1.1",
136
154
  "markdownlint": "^0.40.0",
@@ -138,27 +156,16 @@
138
156
  "markdownlint-rule-relative-links": "^5.1.0",
139
157
  "nano-staged": "^1.0.2",
140
158
  "obsidian": "^1.12.3",
141
- "obsidian-typings": "obsidian-public-latest",
142
- "semver": "^7.7.4",
159
+ "semver": "^7.8.0",
143
160
  "ts-jest": "^29.4.9",
144
161
  "type-fest": "^5.6.0",
145
- "typescript": "^5.9.3",
146
- "typescript-eslint": "^8.59.2",
147
- "vitest": "^4.1.5"
162
+ "typescript": "^6.0.3",
163
+ "typescript-eslint": "^8.59.3",
164
+ "vite": "8.0.12",
165
+ "vitest": "^4.1.6"
148
166
  },
149
167
  "peerDependencies": {
150
168
  "obsidian": "^1.12.3",
151
169
  "type-fest": "^5.6.0"
152
- },
153
- "overrides": {
154
- "@antfu/utils": "9.2.0",
155
- "@sinonjs/fake-timers": "13.0.5",
156
- "eslint-plugin-import": "$eslint-plugin-import-x",
157
- "type-fest": "^5.6.0",
158
- "urlpattern-polyfill": "npm:dry-uninstall"
159
- },
160
- "dependencies": {
161
- "puppeteer-core": "^24.43.0",
162
- "webdriverio": "9.27.0"
163
170
  }
164
171
  }
@@ -1,8 +1,8 @@
1
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
2
+ index 023a11a..e72d5b0 100644
3
3
  --- a/node_modules/vite/dist/node/index.d.ts
4
4
  +++ b/node_modules/vite/dist/node/index.d.ts
5
- @@ -2766,7 +2766,9 @@ interface ConfigPluginContext extends Omit<MinimalPluginContext, "meta" | "envir
5
+ @@ -2770,7 +2770,9 @@ interface ConfigPluginContext extends Omit<MinimalPluginContext, "meta" | "envir
6
6
  }
7
7
  interface MinimalPluginContextWithoutEnvironment extends Omit<MinimalPluginContext, "environment"> {}
8
8
  declare module "rolldown" {