@maravilla-labs/types 0.9.0 → 0.9.1

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,5 +1,14 @@
1
1
  # @maravilla-labs/types
2
2
 
3
+ ## 0.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ - f5a503e: Fix `npm run check` error in consumers: re-export the default `Platform` type
8
+ with `export type` (TS1205 under `verbatimModuleSyntax`). Was `export { Platform
9
+ as default }`; `Platform` is a type, so a strict consumer's type-check failed
10
+ inside `node_modules/@maravilla-labs/types`.
11
+
3
12
  ## 0.9.0
4
13
 
5
14
  ### Minor Changes
package/index.d.ts CHANGED
@@ -1188,4 +1188,4 @@ export interface Platform {
1188
1188
  * /// <reference types="@maravilla-labs/types/global" />
1189
1189
  * ```
1190
1190
  */
1191
- export { Platform as default };
1191
+ export type { Platform as default };
package/index.ts CHANGED
@@ -1381,4 +1381,4 @@ export interface Platform {
1381
1381
  * ```
1382
1382
  */
1383
1383
 
1384
- export { Platform as default };
1384
+ export type { Platform as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maravilla-labs/types",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "TypeScript definitions for Maravilla Runtime platform APIs",
5
5
  "main": "index.ts",
6
6
  "types": "index.ts",