@modern-js/plugin-bff 1.1.2-beta.1 → 1.1.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.
File without changes
@@ -0,0 +1 @@
1
+ export * from '/github/workspace/packages/cli/plugin-runtime'
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @modern-js/plugin-bff
2
2
 
3
+ ## 1.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 085a6a58: refactor server plugin
8
+ - 39e8137d: fix: support prefix array & webpack loader should read requestCreator & adjust runtime path to relative
9
+ - 085a6a58: refactor server plugin
10
+ - 085a6a58: refactor server conifg
11
+ - 085a6a58: support server runtime
12
+ - 085a6a58: feat: refactor server plugin
13
+ - Updated dependencies [085a6a58]
14
+ - Updated dependencies [085a6a58]
15
+ - Updated dependencies [085a6a58]
16
+ - Updated dependencies [d280ea33]
17
+ - Updated dependencies [d4fcc73a]
18
+ - Updated dependencies [085a6a58]
19
+ - Updated dependencies [ed1f6b12]
20
+ - Updated dependencies [a5ebbb00]
21
+ - Updated dependencies [085a6a58]
22
+ - @modern-js/core@1.1.3
23
+ - @modern-js/server-plugin@1.1.2
24
+ - @modern-js/server-utils@1.1.2
25
+ - @modern-js/utils@1.1.3
26
+
3
27
  ## 1.1.1
4
28
 
5
29
  ### Patch Changes
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "modern",
12
12
  "modern.js"
13
13
  ],
14
- "version": "1.1.2-beta.1",
14
+ "version": "1.1.2",
15
15
  "jsnext:source": "./src/index.ts",
16
16
  "types": "./dist/types/index.d.ts",
17
17
  "main": "./dist/js/node/index.js",
@@ -41,14 +41,6 @@
41
41
  ]
42
42
  }
43
43
  },
44
- "scripts": {
45
- "prepare": "pnpm build",
46
- "prepublishOnly": "pnpm build -- --platform",
47
- "new": "modern new",
48
- "build": "modern build",
49
- "dev": "modern build --watch",
50
- "test": "modern test"
51
- },
52
44
  "dependencies": {
53
45
  "@babel/core": "^7.15.5",
54
46
  "@babel/runtime": "^7",
@@ -56,19 +48,19 @@
56
48
  "@modern-js/babel-compiler": "^1.1.2",
57
49
  "@modern-js/babel-preset-lib": "^1.1.1",
58
50
  "@modern-js/create-request": "^1.1.1",
59
- "@modern-js/server-utils": "^1.1.1",
60
- "@modern-js/utils": "^1.1.2",
51
+ "@modern-js/server-utils": "^1.1.2",
52
+ "@modern-js/utils": "^1.1.3",
61
53
  "fs-extra": "^10.0.0",
62
54
  "loader-utils": "^2.0.0"
63
55
  },
64
56
  "devDependencies": {
65
57
  "@modern-js/bff-utils": "^1.1.1",
66
- "@modern-js/core": "^1.1.2",
58
+ "@modern-js/core": "^1.1.3",
67
59
  "@modern-js/module-tools": "^1.1.1",
68
60
  "@modern-js/plugin-analyze": "^1.1.1",
69
61
  "@modern-js/plugin-testing": "^1.1.1",
70
62
  "@modern-js/runtime": "^1.1.1",
71
- "@modern-js/server-plugin": "^1.1.1",
63
+ "@modern-js/server-plugin": "^1.1.2",
72
64
  "@modern-js/types": "^1.1.2",
73
65
  "@types/babel__core": "^7.1.15",
74
66
  "@types/fs-extra": "^9.0.13",
@@ -83,8 +75,8 @@
83
75
  },
84
76
  "peerDependencies": {
85
77
  "@modern-js/bff-utils": "^1.1.1",
86
- "@modern-js/core": "^1.1.2",
87
- "@modern-js/server-plugin": "^1.1.1"
78
+ "@modern-js/core": "^1.1.3",
79
+ "@modern-js/server-plugin": "^1.1.2"
88
80
  },
89
81
  "modernConfig": {
90
82
  "output": {
@@ -95,5 +87,11 @@
95
87
  "publishConfig": {
96
88
  "registry": "https://registry.npmjs.org/",
97
89
  "access": "public"
90
+ },
91
+ "scripts": {
92
+ "new": "modern new",
93
+ "build": "modern build",
94
+ "dev": "modern build --watch",
95
+ "test": "modern test"
98
96
  }
99
- }
97
+ }