@flex-development/mlly 1.0.0-alpha.12 → 1.0.0-alpha.13

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
@@ -1,3 +1,15 @@
1
+ ## [1.0.0-alpha.13](https://github.com/flex-development/mlly/compare/1.0.0-alpha.12...1.0.0-alpha.13) (2023-02-22)
2
+
3
+
4
+ ### :package: Build
5
+
6
+ * **deps-dev:** Bump typescript from 5.0.0-dev.20230219 to 5.0.0-dev.20230222 ([#158](https://github.com/flex-development/mlly/issues/158)) ([1ca8a5f](https://github.com/flex-development/mlly/commit/1ca8a5f6998541fe470a9b7b0372c0d39381948d))
7
+
8
+
9
+ ### :bug: Fixes
10
+
11
+ * **ts:** ensure typechecks pass without peer deps installed ([81b55ca](https://github.com/flex-development/mlly/commit/81b55caa8533ad174ec009535e5a030be21e6cc1))
12
+
1
13
  ## [1.0.0-alpha.12](https://github.com/flex-development/mlly/compare/1.0.0-alpha.11...1.0.0-alpha.12) (2023-02-22)
2
14
 
3
15
 
@@ -67,6 +67,7 @@ interface GetFormatOptions {
67
67
  *
68
68
  * @default {}
69
69
  */
70
+ // @ts-ignore peer dependency
70
71
  req?: import('node-fetch').RequestInit | undefined;
71
72
  }
72
73
  export type { GetFormatOptions as default };
@@ -47,6 +47,7 @@ interface GetSourceOptions {
47
47
  *
48
48
  * @default {}
49
49
  */
50
+ // @ts-ignore peer dependency
50
51
  req?: import('node-fetch').RequestInit | undefined;
51
52
  }
52
53
  export type { GetSourceOptions as default };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@flex-development/mlly",
3
3
  "description": "ECMAScript module utilities",
4
- "version": "1.0.0-alpha.12",
4
+ "version": "1.0.0-alpha.13",
5
5
  "keywords": [
6
6
  "ecmascript",
7
7
  "esm",
@@ -170,7 +170,7 @@
170
170
  "tempfile": "5.0.0",
171
171
  "trash-cli": "5.0.0",
172
172
  "ts-dedent": "2.2.0",
173
- "typescript": "5.0.0-dev.20230219",
173
+ "typescript": "5.0.0-dev.20230222",
174
174
  "unified": "10.1.2",
175
175
  "unist-util-remove": "3.1.0",
176
176
  "unist-util-source": "4.0.2",
@@ -74,7 +74,6 @@ interface GetFormatOptions {
74
74
  *
75
75
  * @default {}
76
76
  */
77
- // @ts-ignore peer dependency
78
77
  req?: import('node-fetch').RequestInit | undefined
79
78
  }
80
79
 
@@ -52,7 +52,6 @@ interface GetSourceOptions {
52
52
  *
53
53
  * @default {}
54
54
  */
55
- // @ts-ignore peer dependency
56
55
  req?: import('node-fetch').RequestInit | undefined
57
56
  }
58
57