@event-chat/micro-dev-config 0.0.9 → 0.0.11

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 +16 -0
  2. package/package.json +9 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.11](https://github.com/cgfeel/zf-micro-app/compare/micro-dev-config@v0.0.10...micro-dev-config@v0.0.11) (2026-07-09)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add peerDependencies ([23cdb61](https://github.com/cgfeel/zf-micro-app/commit/23cdb61d1c269e968a8423ebeeeabfe6ab7e6e2f))
9
+ * add peerDependencies ([37e8096](https://github.com/cgfeel/zf-micro-app/commit/37e80965f463d530cf371d695c3d0dadc80447f8))
10
+
11
+ ## [0.0.10](https://github.com/cgfeel/zf-micro-app/compare/micro-dev-config@v0.0.9...micro-dev-config@v0.0.10) (2026-07-09)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * add micro cli tsconfig ([e4a4f10](https://github.com/cgfeel/zf-micro-app/commit/e4a4f1040c407ed071ed6cedade96888552a30a7))
17
+ * add micro cli tsconfig ([d2e6dbd](https://github.com/cgfeel/zf-micro-app/commit/d2e6dbdc858501858f347275ad7d30ea1ecb99d4))
18
+
3
19
  ## [0.0.9](https://github.com/cgfeel/zf-micro-app/compare/micro-dev-config@v0.0.8...micro-dev-config@v0.0.9) (2026-07-09)
4
20
 
5
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@event-chat/micro-dev-config",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "统一微前端开发环境",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,7 +8,8 @@
8
8
  },
9
9
  "exports": {
10
10
  ".": "./dist/index.js",
11
- "./helpers": "./dist/helpers.js"
11
+ "./helpers": "./dist/helpers.js",
12
+ "./tsconfig": "./tsconfig.json"
12
13
  },
13
14
  "keywords": [
14
15
  "micro app",
@@ -26,15 +27,18 @@
26
27
  "license": "MIT",
27
28
  "dependencies": {
28
29
  "html-webpack-plugin": "^5.6.0",
29
- "prettier": "^3.7.4",
30
30
  "ts-loader": "^9.5.1",
31
- "typescript": "^5.9.3",
32
31
  "webpack": "^5.91.0",
33
32
  "webpack-cli": "^5.1.4",
34
33
  "webpack-dev-server": "^5.0.4"
35
34
  },
36
35
  "devDependencies": {
37
- "@types/node": "^16.18.126"
36
+ "@types/node": "^16.18.126",
37
+ "typescript": "^5.9.3"
38
+ },
39
+ "peerDependencies": {
40
+ "prettier": "^3.7.4",
41
+ "typescript": "^5.9.3"
38
42
  },
39
43
  "scripts": {
40
44
  "build": "tsc",