@modern-js/plugin-server-build 0.0.0-canary-20220127122200 → 0.0.0-canary-20220307090601
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.
- package/CHANGELOG.md +17 -5
- package/package.json +8 -11
- package/tests/tsconfig.json +13 -0
- package/.modern-js/main/index.html +0 -27
package/CHANGELOG.md
CHANGED
@@ -1,16 +1,28 @@
|
|
1
1
|
# @modern-js/plugin-server-build
|
2
2
|
|
3
|
-
## 0.0.0-canary-
|
3
|
+
## 0.0.0-canary-20220307090601
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- 55e18278: chore: remove unused dependencies and devDependencies
|
8
|
+
- Updated dependencies [55e18278]
|
9
|
+
- Updated dependencies [a7f42f48]
|
10
|
+
- @modern-js/core@0.0.0-canary-20220307090601
|
11
|
+
- @modern-js/babel-compiler@0.0.0-canary-20220307090601
|
12
|
+
- @modern-js/utils@0.0.0-canary-20220307090601
|
13
|
+
|
14
|
+
## 1.2.1
|
4
15
|
|
5
16
|
### Patch Changes
|
6
17
|
|
7
18
|
- 83166714: change .npmignore
|
8
19
|
- Updated dependencies [83166714]
|
20
|
+
- Updated dependencies [c3de9882]
|
9
21
|
- Updated dependencies [33ff48af]
|
10
|
-
- @modern-js/core@
|
11
|
-
- @modern-js/server-utils@
|
12
|
-
- @modern-js/babel-compiler@
|
13
|
-
- @modern-js/utils@
|
22
|
+
- @modern-js/core@1.3.2
|
23
|
+
- @modern-js/server-utils@1.2.1
|
24
|
+
- @modern-js/babel-compiler@1.2.1
|
25
|
+
- @modern-js/utils@1.2.2
|
14
26
|
|
15
27
|
## 1.2.0
|
16
28
|
|
package/package.json
CHANGED
@@ -11,7 +11,7 @@
|
|
11
11
|
"modern",
|
12
12
|
"modern.js"
|
13
13
|
],
|
14
|
-
"version": "0.0.0-canary-
|
14
|
+
"version": "0.0.0-canary-20220307090601",
|
15
15
|
"jsnext:source": "./src/index.ts",
|
16
16
|
"types": "./dist/types/index.d.ts",
|
17
17
|
"main": "./dist/js/node/index.js",
|
@@ -29,26 +29,24 @@
|
|
29
29
|
},
|
30
30
|
"dependencies": {
|
31
31
|
"@babel/runtime": "^7",
|
32
|
-
"@modern-js/babel-compiler": "^0.0.0-canary-
|
33
|
-
"@modern-js/server-utils": "^
|
34
|
-
"@modern-js/utils": "^0.0.0-canary-
|
35
|
-
"globby": "^12.0.2",
|
36
|
-
"json5": "^2.2.0"
|
32
|
+
"@modern-js/babel-compiler": "^0.0.0-canary-20220307090601",
|
33
|
+
"@modern-js/server-utils": "^1.2.1",
|
34
|
+
"@modern-js/utils": "^0.0.0-canary-20220307090601"
|
37
35
|
},
|
38
36
|
"devDependencies": {
|
39
|
-
"@modern-js/plugin-analyze": "^
|
37
|
+
"@modern-js/plugin-analyze": "^1.2.1",
|
40
38
|
"@types/babel__core": "^7.1.15",
|
41
39
|
"@types/jest": "^26",
|
42
40
|
"@types/node": "^14",
|
43
41
|
"ts-jest": "^27.0.5",
|
44
42
|
"typescript": "^4",
|
45
|
-
"@modern-js/core": "^0.0.0-canary-
|
43
|
+
"@modern-js/core": "^0.0.0-canary-20220307090601",
|
46
44
|
"@scripts/build": "0.0.0",
|
47
45
|
"jest": "^27",
|
48
46
|
"@scripts/jest-config": "0.0.0"
|
49
47
|
},
|
50
48
|
"peerDependencies": {
|
51
|
-
"@modern-js/core": "^0.0.0-canary-
|
49
|
+
"@modern-js/core": "^0.0.0-canary-20220307090601"
|
52
50
|
},
|
53
51
|
"sideEffects": false,
|
54
52
|
"modernConfig": {
|
@@ -58,8 +56,7 @@
|
|
58
56
|
},
|
59
57
|
"publishConfig": {
|
60
58
|
"registry": "https://registry.npmjs.org/",
|
61
|
-
"access": "public"
|
62
|
-
"types": "./dist/types/index.d.ts"
|
59
|
+
"access": "public"
|
63
60
|
},
|
64
61
|
"scripts": {
|
65
62
|
"new": "modern new",
|
@@ -0,0 +1,13 @@
|
|
1
|
+
{
|
2
|
+
"extends": "@modern-js/tsconfig/base",
|
3
|
+
"compilerOptions": {
|
4
|
+
"declaration": true,
|
5
|
+
"jsx": "preserve",
|
6
|
+
"baseUrl": "./",
|
7
|
+
"outDir": "./out",
|
8
|
+
"emitDeclarationOnly": true,
|
9
|
+
"isolatedModules": true,
|
10
|
+
"paths": {},
|
11
|
+
"types": ["node", "jest"]
|
12
|
+
}
|
13
|
+
}
|
@@ -1,27 +0,0 @@
|
|
1
|
-
|
2
|
-
<!DOCTYPE html>
|
3
|
-
<html>
|
4
|
-
<head>
|
5
|
-
<%= meta %>
|
6
|
-
<title><%= title %></title>
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
<script>
|
11
|
-
window.__assetPrefix__ = '<%= assetPrefix %>';
|
12
|
-
</script>
|
13
|
-
|
14
|
-
</head>
|
15
|
-
|
16
|
-
<body>
|
17
|
-
<!--<?- chunksMap.css ?>-->
|
18
|
-
<noscript>
|
19
|
-
We're sorry but react app doesn't work properly without JavaScript enabled. Please enable it to continue.
|
20
|
-
</noscript>
|
21
|
-
<div id="<%= mountId %>"><!--<?- html ?>--></div>
|
22
|
-
|
23
|
-
<!--<?- chunksMap.js ?>-->
|
24
|
-
<!--<?- SSRDataScript ?>-->
|
25
|
-
</body>
|
26
|
-
|
27
|
-
</html>
|