@modular-component/with-fragment 0.3.0 → 0.3.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +9 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @modular-component/with-fragment
2
2
 
3
+ ## 0.3.2
4
+
5
+ ### Patch Changes
6
+
7
+ - @modular-component/core@0.3.2
8
+
9
+ ## 0.3.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 6fa514f: Fix exports compatibility with some bundlers
14
+ - Updated dependencies [6fa514f]
15
+ - @modular-component/core@0.3.1
16
+
3
17
  ## 0.3.0
4
18
 
5
19
  ### Minor Changes
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "Default",
9
9
  "Conditional"
10
10
  ],
11
- "version": "0.3.0",
11
+ "version": "0.3.2",
12
12
  "type": "module",
13
13
  "license": "MIT",
14
14
  "publishConfig": {
@@ -24,12 +24,12 @@
24
24
  "scripts": {
25
25
  "build": "yarn build:core && yarn build:self",
26
26
  "build:core": "yarn workspace @modular-component/core build",
27
- "build:self": "tsc -p tsconfig.build.json",
27
+ "build:self": "tsc -p tsconfig.build.json && tsc --noEmit register",
28
28
  "license": "cp ../../LICENSE ./LICENSE"
29
29
  },
30
30
  "peerDependencies": {
31
- "@modular-component/core": "0.3.0",
32
- "react": ">=17 <19"
31
+ "@modular-component/core": "0.3.2",
32
+ "react": ">=17"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@modular-component/core": "*",
@@ -37,5 +37,9 @@
37
37
  "typescript": "^5.9.3"
38
38
  },
39
39
  "main": "dist/index.js",
40
- "types": "dist/index.d.ts"
40
+ "types": "dist/index.d.ts",
41
+ "exports": {
42
+ ".": "./dist/index.js",
43
+ "./register": "./register.js"
44
+ }
41
45
  }