@enact/cli 5.0.0-alpha.3 → 5.0.0-rc.1
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/.github/PULL_REQUEST_TEMPLATE.md +28 -0
- package/.travis.yml +3 -5
- package/CHANGELOG.md +41 -0
- package/README.md +5 -4
- package/commands/pack.js +5 -1
- package/commands/serve.js +50 -30
- package/commands/test.js +0 -5
- package/config/jest/jest.config.js +5 -7
- package/config/jest/setupTests.js +0 -6
- package/config/webpack.config.js +63 -24
- package/docs/building-apps.md +93 -0
- package/docs/index.md +1 -0
- package/docs/isomorphic-support.md +26 -0
- package/docs/measuring-performance.md +64 -0
- package/docs/starting-a-new-app.md +5 -4
- package/docs/testing-apps.md +0 -1
- package/npm-shrinkwrap.json +46707 -4747
- package/package.json +12 -13
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enact/cli",
|
|
3
|
-
"version": "5.0.0-
|
|
3
|
+
"version": "5.0.0-rc.1",
|
|
4
4
|
"description": "Full-featured build environment tool for Enact applications.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Jason Robitaille <jason.robitaille@lge.com>",
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@babel/core": "^7.17.8",
|
|
43
|
+
"@babel/eslint-plugin": "^7.17.7",
|
|
43
44
|
"@babel/plugin-proposal-decorators": "^7.16.7",
|
|
44
45
|
"@babel/plugin-proposal-export-default-from": "^7.16.7",
|
|
45
46
|
"@babel/plugin-transform-react-inline-elements": "^7.16.7",
|
|
@@ -48,14 +49,13 @@
|
|
|
48
49
|
"@babel/preset-react": "^7.16.7",
|
|
49
50
|
"@babel/preset-typescript": "^7.16.7",
|
|
50
51
|
"@babel/runtime": "^7.16.7",
|
|
51
|
-
"@enact/dev-utils": "^5.0.0-
|
|
52
|
-
"@enact/template-sandstone": "^1.5.0-
|
|
52
|
+
"@enact/dev-utils": "^5.0.0-rc.1",
|
|
53
|
+
"@enact/template-sandstone": "^1.5.0-rc.1",
|
|
53
54
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
|
|
54
55
|
"@testing-library/jest-dom": "^5.14.1",
|
|
55
|
-
"@testing-library/react": "^13.
|
|
56
|
-
"@testing-library/react-hooks": "^8.0.0-alpha.1",
|
|
56
|
+
"@testing-library/react": "^13.3.0",
|
|
57
57
|
"@testing-library/user-event": "^13.2.0",
|
|
58
|
-
"@
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^5.5.0",
|
|
59
59
|
"babel-jest": "^27.5.1",
|
|
60
60
|
"babel-loader": "^8.2.3",
|
|
61
61
|
"babel-plugin-dev-expression": "^0.2.3",
|
|
@@ -64,17 +64,16 @@
|
|
|
64
64
|
"babel-plugin-transform-rename-import": "^2.3.0",
|
|
65
65
|
"case-sensitive-paths-webpack-plugin": "^2.4.0",
|
|
66
66
|
"chalk": "^4.1.2",
|
|
67
|
-
"core-js": "
|
|
67
|
+
"core-js": "3.22.8",
|
|
68
68
|
"cross-spawn": "^7.0.3",
|
|
69
69
|
"css-loader": "^6.7.1",
|
|
70
70
|
"css-minimizer-webpack-plugin": "^3.4.1",
|
|
71
71
|
"dotenv": "^16.0.0",
|
|
72
72
|
"dotenv-expand": "^8.0.3",
|
|
73
|
-
"enzyme": "3.11.0",
|
|
74
73
|
"eslint": "^8.12.0",
|
|
75
|
-
"eslint-config-enact": "^4.
|
|
76
|
-
"eslint-plugin-
|
|
77
|
-
"eslint-plugin-
|
|
74
|
+
"eslint-config-enact": "^4.1.1",
|
|
75
|
+
"eslint-plugin-enact": "^1.0.1",
|
|
76
|
+
"eslint-plugin-jest": "^26.1.5",
|
|
78
77
|
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
79
78
|
"eslint-plugin-react": "^7.29.4",
|
|
80
79
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
@@ -103,7 +102,7 @@
|
|
|
103
102
|
"postcss-loader": "^6.2.1",
|
|
104
103
|
"postcss-normalize": "^10.0.1",
|
|
105
104
|
"postcss-preset-env": "^7.4.3",
|
|
106
|
-
"postcss-resolution-independence": "^1.0
|
|
105
|
+
"postcss-resolution-independence": "^1.1.0",
|
|
107
106
|
"postcss-safe-parser": "^6.0.0",
|
|
108
107
|
"prompts": "^2.4.2",
|
|
109
108
|
"react": "^18.0.0",
|
|
@@ -113,11 +112,11 @@
|
|
|
113
112
|
"react-test-renderer": "^18.0.0",
|
|
114
113
|
"resolution-independence": "^1.0.0",
|
|
115
114
|
"resolve": "^1.22.0",
|
|
115
|
+
"sass-loader": "^13.0.0",
|
|
116
116
|
"semver": "^7.3.5",
|
|
117
117
|
"source-map-loader": "^3.0.1",
|
|
118
118
|
"strip-ansi": "^6.0.1",
|
|
119
119
|
"style-loader": "^3.3.1",
|
|
120
|
-
"tailwindcss": "^3.0.23",
|
|
121
120
|
"tar": "^6.1.11",
|
|
122
121
|
"terser-webpack-plugin": "^5.3.1",
|
|
123
122
|
"v8-compile-cache": "^2.3.0",
|