@modern-js/core 1.1.5-beta.1 → 1.2.0

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 +17 -0
  2. package/package.json +12 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @modern-js/core
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 90eeb72c: add modern config schema and types of testing, tools.jest.
8
+ add typesVersions for re-exporting types of @modern-js/plugin-testing.
9
+ fix type lost when redeclareing modules.
10
+ - 5a4c557e: feat: support bff test
11
+
12
+ ### Patch Changes
13
+
14
+ - e04914ce: add route types, fix metrics types
15
+ - e04914ce: add route types, fix metrics types
16
+ - ecb344dc: fix micro-frontend type error
17
+ - Updated dependencies [ca7dcb32]
18
+ - @modern-js/utils@1.1.5
19
+
3
20
  ## 1.1.4
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.1.5-beta.1",
14
+ "version": "1.2.0",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -35,20 +35,12 @@
35
35
  }
36
36
  },
37
37
  "bin": "./bin/modern-js.js",
38
- "scripts": {
39
- "prepare": "pnpm build",
40
- "prepublishOnly": "pnpm build -- --platform",
41
- "new": "modern new",
42
- "build": "modern build",
43
- "dev": "modern build --watch",
44
- "test": "modern test --passWithNoTests"
45
- },
46
38
  "dependencies": {
47
39
  "@babel/code-frame": "^7.14.5",
48
40
  "@babel/runtime": "^7",
49
41
  "@modern-js/load-config": "^1.1.1",
50
42
  "@modern-js/plugin": "^1.1.2",
51
- "@modern-js/utils": "^1.1.4",
43
+ "@modern-js/utils": "^1.1.5",
52
44
  "address": "^1.1.2",
53
45
  "ajv": "^8.6.2",
54
46
  "ajv-keywords": "^5.0.0",
@@ -65,7 +57,7 @@
65
57
  },
66
58
  "devDependencies": {
67
59
  "@types/babel__code-frame": "^7.0.3",
68
- "@modern-js/types": "^1.1.3",
60
+ "@modern-js/types": "^1.1.4",
69
61
  "@types/jest": "^26",
70
62
  "@types/lodash.clonedeep": "^4.5.6",
71
63
  "@types/lodash.mergewith": "^4.6.6",
@@ -86,5 +78,12 @@
86
78
  "publishConfig": {
87
79
  "registry": "https://registry.npmjs.org/",
88
80
  "access": "public"
89
- }
90
- }
81
+ },
82
+ "scripts": {
83
+ "new": "modern new",
84
+ "build": "modern build",
85
+ "dev": "modern build --watch",
86
+ "test": "modern test --passWithNoTests"
87
+ },
88
+ "readme": "\n<p align=\"center\">\n <a href=\"https://modernjs.dev\" target=\"blank\"><img src=\"https://lf3-static.bytednsdoc.com/obj/eden-cn/ylaelkeh7nuhfnuhf/modernjs-cover.png\" width=\"300\" alt=\"Modern.js Logo\" /></a>\n</p>\n<p align=\"center\">\n现代 Web 工程体系\n <br/>\n <a href=\"https://modernjs.dev\" target=\"blank\">\n modernjs.dev\n </a>\n</p>\n<p align=\"center\">\n The meta-framework suite designed from scratch for frontend-focused modern web development\n</p>\n\n# Introduction\n\n> The doc site ([modernjs.dev](https://modernjs.dev)) and articles are only available in Chinese for now, we are planning to add English versions soon.\n\n- [Modern.js: Hello, World!](https://zhuanlan.zhihu.com/p/426707646)\n\n## Getting Started\n\n- [Quick Start](https://modernjs.dev/docs/start)\n- [Guides](https://modernjs.dev/docs/guides)\n- [API References](https://modernjs.dev/docs/apis)\n\n## Contributing\n\n- [Contributing Guide](https://github.com/modern-js-dev/modern.js/blob/main/CONTRIBUTING.md)\n"
89
+ }