@modern-js/plugin-server-build 1.1.1 → 1.1.2-rc.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/package.json +11 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @modern-js/plugin-server-build
2
2
 
3
+ ## 1.1.2-rc.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [d927bc83]
8
+ - Updated dependencies [d73ff455]
9
+ - Updated dependencies [9c1ab865]
10
+ - Updated dependencies [d73ff455]
11
+ - Updated dependencies [d73ff455]
12
+ - Updated dependencies [d73ff455]
13
+ - Updated dependencies [d73ff455]
14
+ - @modern-js/utils@1.1.4-rc.0
15
+ - @modern-js/core@1.1.4-rc.0
16
+ - @modern-js/server-utils@1.1.3-rc.0
17
+ - @modern-js/babel-compiler@1.1.3-rc.0
18
+
3
19
  ## 1.1.1
4
20
 
5
21
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.1.1",
14
+ "version": "1.1.2-rc.0",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -28,25 +28,25 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@babel/runtime": "^7",
31
- "@modern-js/babel-compiler": "^1.1.2",
32
- "@modern-js/server-utils": "^1.1.1",
33
- "@modern-js/utils": "^1.1.2",
31
+ "@modern-js/babel-compiler": "^1.1.3-rc.0",
32
+ "@modern-js/server-utils": "^1.1.3-rc.0",
33
+ "@modern-js/utils": "^1.1.4-rc.0",
34
34
  "globby": "^12.0.2",
35
35
  "json5": "^2.2.0"
36
36
  },
37
37
  "devDependencies": {
38
- "@modern-js/plugin-analyze": "^1.1.1",
38
+ "@modern-js/plugin-analyze": "^1.1.2-rc.0",
39
39
  "@types/babel__core": "^7.1.15",
40
40
  "@types/jest": "^26",
41
41
  "@types/node": "^14",
42
42
  "ts-jest": "^27.0.5",
43
43
  "typescript": "^4",
44
- "@modern-js/core": "^1.1.2",
45
- "@modern-js/plugin-testing": "^1.1.0",
46
- "@modern-js/module-tools": "^1.1.0"
44
+ "@modern-js/core": "^1.1.4-rc.0",
45
+ "@modern-js/plugin-testing": "^1.1.1",
46
+ "@modern-js/module-tools": "^1.1.1"
47
47
  },
48
48
  "peerDependencies": {
49
- "@modern-js/core": "^1.1.2"
49
+ "@modern-js/core": "^1.1.4-rc.0"
50
50
  },
51
51
  "sideEffects": false,
52
52
  "modernConfig": {
@@ -63,5 +63,6 @@
63
63
  "build": "modern build",
64
64
  "dev": "modern build --watch",
65
65
  "test": "modern test --passWithNoTests"
66
- }
66
+ },
67
+ "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"
67
68
  }