obsidian-integration-testing 4.1.1 → 4.1.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/dist/lib/cjs/library.cjs
CHANGED
|
@@ -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.
|
|
24
|
+
const LIBRARY_VERSION = false ? "dev" : "4.1.1";
|
|
25
25
|
// Annotate the CommonJS export names for ESM import in node:
|
|
26
26
|
0 && (module.exports = {
|
|
27
27
|
LIBRARY_VERSION
|
package/dist/lib/esm/library.mjs
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "obsidian-integration-testing",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.2",
|
|
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,27 +81,44 @@
|
|
|
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": "^
|
|
100
|
-
"@commitlint/config-conventional": "^
|
|
101
|
-
"@commitlint/types": "^
|
|
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
|
|
104
|
-
"@eslint/config-helpers": "^0.
|
|
120
|
+
"@eslint/compat": "^2.1.0",
|
|
121
|
+
"@eslint/config-helpers": "^0.6.0",
|
|
105
122
|
"@eslint/js": "^10.0.1",
|
|
106
123
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
107
124
|
"@total-typescript/ts-reset": "^0.6.1",
|
|
@@ -110,19 +127,18 @@
|
|
|
110
127
|
"@types/markdown-it": "^14.1.2",
|
|
111
128
|
"@types/semver": "^7.7.1",
|
|
112
129
|
"@types/turndown": "^5.0.6",
|
|
113
|
-
"@typescript-eslint/rule-tester": "^8.59.
|
|
114
|
-
"@typescript-eslint/utils": "^8.59.
|
|
115
|
-
"@vitest/coverage-v8": "^4.1.
|
|
130
|
+
"@typescript-eslint/rule-tester": "^8.59.3",
|
|
131
|
+
"@typescript-eslint/utils": "^8.59.3",
|
|
132
|
+
"@vitest/coverage-v8": "^4.1.6",
|
|
116
133
|
"@vitest/runner": "4.1.0",
|
|
117
134
|
"@wdio/protocols": "9.27.0",
|
|
118
135
|
"@wdio/types": "9.27.0",
|
|
119
136
|
"better-typescript-lib": "^2.12.0",
|
|
120
|
-
"commitizen": "^4.3.1",
|
|
121
137
|
"cspell": "^10.0.0",
|
|
122
|
-
"
|
|
138
|
+
"czg": "^1.13.1",
|
|
123
139
|
"dprint": "^0.54.0",
|
|
124
140
|
"esbuild": "^0.28.0",
|
|
125
|
-
"eslint": "^10.
|
|
141
|
+
"eslint": "^10.4.0",
|
|
126
142
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
127
143
|
"eslint-plugin-import-x": "^4.16.2",
|
|
128
144
|
"eslint-plugin-jsdoc": "^62.9.0",
|
|
@@ -130,7 +146,7 @@
|
|
|
130
146
|
"eslint-plugin-tsdoc": "^0.5.2",
|
|
131
147
|
"globals": "^17.6.0",
|
|
132
148
|
"husky": "^9.1.7",
|
|
133
|
-
"jest": "^30.
|
|
149
|
+
"jest": "^30.4.2",
|
|
134
150
|
"jiti": "^2.7.0",
|
|
135
151
|
"jsdom": "^29.1.1",
|
|
136
152
|
"markdownlint": "^0.40.0",
|
|
@@ -139,26 +155,16 @@
|
|
|
139
155
|
"nano-staged": "^1.0.2",
|
|
140
156
|
"obsidian": "^1.12.3",
|
|
141
157
|
"obsidian-typings": "obsidian-public-latest",
|
|
142
|
-
"semver": "^7.
|
|
158
|
+
"semver": "^7.8.0",
|
|
143
159
|
"ts-jest": "^29.4.9",
|
|
144
160
|
"type-fest": "^5.6.0",
|
|
145
|
-
"typescript": "^
|
|
146
|
-
"typescript-eslint": "^8.59.
|
|
147
|
-
"
|
|
161
|
+
"typescript": "^6.0.3",
|
|
162
|
+
"typescript-eslint": "^8.59.3",
|
|
163
|
+
"vite": "8.0.12",
|
|
164
|
+
"vitest": "^4.1.6"
|
|
148
165
|
},
|
|
149
166
|
"peerDependencies": {
|
|
150
167
|
"obsidian": "^1.12.3",
|
|
151
168
|
"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
169
|
}
|
|
164
170
|
}
|
|
@@ -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
|
|
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
|
-
@@ -
|
|
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" {
|
|
Binary file
|