obsidian-dev-utils 62.1.0 → 62.3.0
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/CHANGELOG.md +15 -0
- package/dist/dev/main.js +27594 -0
- package/dist/dev/manifest.json +9 -0
- package/dist/lib/cjs/library.cjs +1 -1
- package/dist/lib/cjs/script-utils/linters/eslint-rules/require-super-call.cjs +10 -4
- package/dist/lib/esm/library.mjs +1 -1
- package/dist/lib/esm/script-utils/linters/eslint-rules/require-super-call.mjs +11 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 62.3.0
|
|
4
|
+
|
|
5
|
+
- fix(build): run generate-index before TypeScript compilation
|
|
6
|
+
- test: simplify getDomEventsHandlersConstructor integration test
|
|
7
|
+
- fix(test): update list HTML assertion
|
|
8
|
+
- fix(test): use global vault and async/await in obsidian integration tests
|
|
9
|
+
- chore: update libs
|
|
10
|
+
- test: add Obsidian integration test infrastructure and initial tests
|
|
11
|
+
- chore: update libs
|
|
12
|
+
|
|
13
|
+
## 62.2.0
|
|
14
|
+
|
|
15
|
+
- fix(eslint): handle unresolvable base types in require-super-call rule
|
|
16
|
+
- chore: update libs
|
|
17
|
+
|
|
3
18
|
## 62.1.0
|
|
4
19
|
|
|
5
20
|
- feat: validate generic types
|