annil 1.7.3 → 1.7.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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@
4
4
 
5
5
  * 解决DetailedType不接收接口类型的错误 ([ae8acbf](https://github.com/missannil/annil/commit/ae8acbfc2e62f99db565c448ad9253aa549e78bb))
6
6
 
7
+ ## [1.7.4](https://github.com/missannil/annil/compare/v1.7.3...v1.7.4) (2024-06-30)
8
+
9
+
10
+ ### Bug Fixes
11
+
12
+ * jest.config.ts的transform项修复,update typescript version from 5.3.2 to 5.5.2 ([00e221c](https://github.com/missannil/annil/commit/00e221ca37b042f042715b26dd5d158c0671a30e))
13
+
7
14
  ## [1.7.3](https://github.com/missannil/annil/compare/v1.7.2...v1.7.3) (2024-05-03)
8
15
 
9
16
 
@@ -1,4 +1,3 @@
1
- /// <reference types="miniprogram-api-typings" />
2
1
  import type { WMCompPageLifetimes, WMPageLifetimes } from "../../types/OfficialTypeAlias";
3
2
  import type { LifetimesConstraint } from "./Lifetimes/LifetimesConstraint";
4
3
  type _RootComponentDoc = {
@@ -1,4 +1,3 @@
1
- /// <reference types="miniprogram-api-typings" />
2
1
  export type GetSubComputedDoc<TComputed extends AnyObject> = {
3
2
  [k in keyof TComputed]: ReturnType<TComputed[k]>;
4
3
  };
@@ -1,4 +1,3 @@
1
- /// <reference types="miniprogram-api-typings" />
2
1
  import type { IfEquals } from "hry-types/src/Any/IfEquals";
3
2
  import type { IfExtends } from "hry-types/src/Any/IfExtends";
4
3
  import type { NoInfer } from "hry-types/src/Generic/NoInfer";
@@ -1,3 +1,2 @@
1
- import * as Vant from "./vant";
2
- import * as Wm from "./wm";
1
+ export {};
3
2
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/thirdLib/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAC/B,OAAO,KAAK,EAAE,MAAM,MAAM,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/thirdLib/index.ts"],"names":[],"mappings":""}
@@ -1,7 +1,3 @@
1
- /// <reference types="miniprogram-api-typings" />
2
- /// <reference types="miniprogram-api-typings" />
3
- /// <reference types="miniprogram-api-typings" />
4
- /// <reference types="miniprogram-api-typings" />
5
1
  export type WMTriggerEventOption = WechatMiniprogram.Component.TriggerEventOption;
6
2
  export type WMCustomEvent<Detail = undefined, Mark extends object = object, CurrentTargetDataset extends object = object, TargetDataset extends object = CurrentTargetDataset> = WechatMiniprogram.CustomEvent<Detail, Mark, CurrentTargetDataset, TargetDataset>;
7
3
  export type WMBaseEvent<Mark extends object = object, CurrentTargetDataset extends object = object, TargetDataset extends object = CurrentTargetDataset> = WechatMiniprogram.BaseEvent<Mark, CurrentTargetDataset, TargetDataset>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "annil",
3
- "version": "1.7.3",
3
+ "version": "1.7.4",
4
4
  "description": "微信小程序(原生开发)插件",
5
5
  "main": "dist/index.js",
6
6
  "types": "src/index.ts",
@@ -26,7 +26,6 @@
26
26
  "commitlint": "^17.6.5",
27
27
  "eslint": "^8.54.0",
28
28
  "eslint-plugin-tsdoc": "^0.2.17",
29
- "hry-types": "^0.18.1",
30
29
  "husky": "^8.0.3",
31
30
  "jest": "^29.7.0",
32
31
  "jest-environment-jsdom": "^29.7.0",
@@ -34,7 +33,7 @@
34
33
  "mobx": "^6.9.0",
35
34
  "prettier": "^2.8.8",
36
35
  "ts-jest": "^29.1.1",
37
- "typescript": "^5.3.2"
36
+ "typescript": "^5.4.5"
38
37
  },
39
38
  "files": [
40
39
  "LICENSE",
@@ -53,6 +52,7 @@
53
52
  "author": "missannil",
54
53
  "license": "MIT",
55
54
  "peerDependencies": {
55
+ "hry-types": "^0.18.1",
56
56
  "miniprogram-api-typings": "^3.12.2"
57
57
  }
58
58
  }