tw5-typed 1.1.2 → 1.1.3

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,8 +1,8 @@
1
1
  {
2
2
  "name": "tw5-typed",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "scripts": {
5
- "check": "tsc --noEmit && eslint src/**/*.ts test/**/*.ts",
5
+ "check": "tsc --noEmit && eslint --max-warnings 0 \"src/**/*.ts\" \"src/**/*.d.ts\" \"test/**/*.ts\"",
6
6
  "docs": "docs-ts",
7
7
  "docs:build": "docusaurus build",
8
8
  "docs:dev": "docusaurus start",
@@ -1,10 +1,9 @@
1
- import { IParseTreeNode } from 'tiddlywiki';
2
-
3
1
  /**
4
2
  * A utility module for working with parse trees.
5
3
  * @description 用于处理解析树的实用程序模块。
6
4
  */
7
5
  declare module '$:/core/modules/utils/parsetree.js' {
6
+ import { IParseTreeNode } from 'tiddlywiki';
8
7
  /**
9
8
  * Add attribute to parse tree node.
10
9
  * @param node - The parse tree node.