@enact/cli 4.1.7 → 5.0.0-alpha.3
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/.eslintrc.js +1 -1
- package/CHANGELOG.md +36 -0
- package/README.md +1 -1
- package/bin/enact.js +7 -1
- package/commands/eject.js +1 -1
- package/commands/lint.js +1 -1
- package/commands/pack.js +24 -17
- package/commands/serve.js +66 -52
- package/config/babel.config.js +2 -0
- package/config/createEnvironmentHash.js +9 -0
- package/config/jest/babelTransform.js +1 -1
- package/config/jest/jest.config.js +0 -1
- package/config/webpack.config.js +130 -98
- package/docs/building-apps.md +2 -2
- package/docs/installation.md +0 -6
- package/npm-shrinkwrap.json +19116 -21094
- package/package.json +87 -96
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enact/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-alpha.3",
|
|
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>",
|
|
@@ -39,103 +39,94 @@
|
|
|
39
39
|
"upupdowndownleftrightleftrightbastart"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@babel/core": "7.
|
|
43
|
-
"@babel/plugin-proposal-
|
|
44
|
-
"@babel/plugin-proposal-
|
|
45
|
-
"@babel/plugin-
|
|
46
|
-
"@babel/plugin-
|
|
47
|
-
"@babel/
|
|
48
|
-
"@babel/
|
|
49
|
-
"@babel/
|
|
50
|
-
"@babel/
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
53
|
-
"@
|
|
54
|
-
"@babel/preset-env": "7.12.1",
|
|
55
|
-
"@babel/preset-react": "7.12.1",
|
|
56
|
-
"@babel/preset-typescript": "7.12.1",
|
|
57
|
-
"@babel/runtime": "7.12.1",
|
|
58
|
-
"@enact/dev-utils": "4.1.4",
|
|
59
|
-
"@enact/template-sandstone": "1.0.0",
|
|
60
|
-
"@pmmmwh/react-refresh-webpack-plugin": "0.4.3",
|
|
42
|
+
"@babel/core": "^7.17.8",
|
|
43
|
+
"@babel/plugin-proposal-decorators": "^7.16.7",
|
|
44
|
+
"@babel/plugin-proposal-export-default-from": "^7.16.7",
|
|
45
|
+
"@babel/plugin-transform-react-inline-elements": "^7.16.7",
|
|
46
|
+
"@babel/plugin-transform-runtime": "^7.16.7",
|
|
47
|
+
"@babel/preset-env": "^7.16.7",
|
|
48
|
+
"@babel/preset-react": "^7.16.7",
|
|
49
|
+
"@babel/preset-typescript": "^7.16.7",
|
|
50
|
+
"@babel/runtime": "^7.16.7",
|
|
51
|
+
"@enact/dev-utils": "^5.0.0-alpha.1",
|
|
52
|
+
"@enact/template-sandstone": "^1.5.0-alpha.2",
|
|
53
|
+
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
|
|
61
54
|
"@testing-library/jest-dom": "^5.14.1",
|
|
62
|
-
"@testing-library/react": "^
|
|
63
|
-
"@testing-library/react-hooks": "^
|
|
55
|
+
"@testing-library/react": "^13.0.0",
|
|
56
|
+
"@testing-library/react-hooks": "^8.0.0-alpha.1",
|
|
64
57
|
"@testing-library/user-event": "^13.2.0",
|
|
65
|
-
"@typescript-eslint/eslint-plugin": "4.5.0",
|
|
66
|
-
"@typescript-eslint/parser": "4.5.0",
|
|
67
58
|
"@wojtekmaj/enzyme-adapter-react-17": "0.3.2",
|
|
68
|
-
"babel-
|
|
69
|
-
"babel-
|
|
70
|
-
"babel-
|
|
71
|
-
"babel-plugin-
|
|
72
|
-
"babel-plugin-
|
|
73
|
-
"babel-plugin-transform-
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
"css-
|
|
80
|
-
"dotenv": "
|
|
81
|
-
"dotenv-expand": "
|
|
59
|
+
"babel-jest": "^27.5.1",
|
|
60
|
+
"babel-loader": "^8.2.3",
|
|
61
|
+
"babel-plugin-dev-expression": "^0.2.3",
|
|
62
|
+
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
63
|
+
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
|
64
|
+
"babel-plugin-transform-rename-import": "^2.3.0",
|
|
65
|
+
"case-sensitive-paths-webpack-plugin": "^2.4.0",
|
|
66
|
+
"chalk": "^4.1.2",
|
|
67
|
+
"core-js": "^3.21.1",
|
|
68
|
+
"cross-spawn": "^7.0.3",
|
|
69
|
+
"css-loader": "^6.7.1",
|
|
70
|
+
"css-minimizer-webpack-plugin": "^3.4.1",
|
|
71
|
+
"dotenv": "^16.0.0",
|
|
72
|
+
"dotenv-expand": "^8.0.3",
|
|
82
73
|
"enzyme": "3.11.0",
|
|
83
|
-
"eslint": "
|
|
84
|
-
"eslint-config-enact": "
|
|
85
|
-
"eslint-plugin-babel": "5.3.1",
|
|
86
|
-
"eslint-plugin-enact": "0.
|
|
87
|
-
"eslint-plugin-jsx-a11y": "6.
|
|
88
|
-
"eslint-plugin-react": "7.
|
|
89
|
-
"eslint-plugin-react-hooks": "4.
|
|
90
|
-
"eslint-plugin-testing-library": "
|
|
91
|
-
"eslint-webpack-plugin": "
|
|
92
|
-
"expose-loader": "1.0
|
|
93
|
-
"file-loader": "6.
|
|
94
|
-
"filesize": "
|
|
95
|
-
"fs-extra": "
|
|
96
|
-
"glob": "7.
|
|
97
|
-
"global-modules": "2.0.0",
|
|
98
|
-
"html-webpack-plugin": "
|
|
99
|
-
"identity-obj-proxy": "3.0.0",
|
|
100
|
-
"jest": "
|
|
101
|
-
"jest-
|
|
102
|
-
"
|
|
103
|
-
"less": "
|
|
104
|
-
"less-
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"postcss": "
|
|
111
|
-
"postcss-
|
|
112
|
-
"postcss-
|
|
113
|
-
"postcss-
|
|
114
|
-
"postcss-
|
|
115
|
-
"postcss-
|
|
116
|
-
"postcss-
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
"
|
|
120
|
-
"react": "
|
|
121
|
-
"react-
|
|
122
|
-
"react-
|
|
123
|
-
"
|
|
124
|
-
"
|
|
125
|
-
"
|
|
126
|
-
"
|
|
127
|
-
"
|
|
128
|
-
"
|
|
129
|
-
"
|
|
130
|
-
"tar": "6.
|
|
131
|
-
"terser-webpack-plugin": "3.
|
|
132
|
-
"v8-compile-cache": "2.
|
|
133
|
-
"validate-npm-package-name": "3.0.0",
|
|
134
|
-
"webpack": "
|
|
135
|
-
"webpack-dev-server": "
|
|
74
|
+
"eslint": "^8.12.0",
|
|
75
|
+
"eslint-config-enact": "^4.0.0",
|
|
76
|
+
"eslint-plugin-babel": "^5.3.1",
|
|
77
|
+
"eslint-plugin-enact": "^1.0.0",
|
|
78
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
79
|
+
"eslint-plugin-react": "^7.29.4",
|
|
80
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
81
|
+
"eslint-plugin-testing-library": "^5.2.1",
|
|
82
|
+
"eslint-webpack-plugin": "^3.1.1",
|
|
83
|
+
"expose-loader": "^3.1.0",
|
|
84
|
+
"file-loader": "^6.2.0",
|
|
85
|
+
"filesize": "^8.0.7",
|
|
86
|
+
"fs-extra": "^10.0.1",
|
|
87
|
+
"glob": "^7.2.0",
|
|
88
|
+
"global-modules": "^2.0.0",
|
|
89
|
+
"html-webpack-plugin": "^5.5.0",
|
|
90
|
+
"identity-obj-proxy": "^3.0.0",
|
|
91
|
+
"jest": "^27.5.1",
|
|
92
|
+
"jest-watch-typeahead": "0.6.5",
|
|
93
|
+
"less": "^4.1.2",
|
|
94
|
+
"less-loader": "^8.1.1",
|
|
95
|
+
"less-plugin-npm-import": "^2.1.0",
|
|
96
|
+
"license-checker": "^25.0.1",
|
|
97
|
+
"mini-css-extract-plugin": "^2.6.0",
|
|
98
|
+
"minimist": "^1.2.5",
|
|
99
|
+
"node-polyfill-webpack-plugin": "^1.1.4",
|
|
100
|
+
"postcss": "^8.4.12",
|
|
101
|
+
"postcss-flexbugs-fixes": "^5.0.2",
|
|
102
|
+
"postcss-global-import": "^1.0.6",
|
|
103
|
+
"postcss-loader": "^6.2.1",
|
|
104
|
+
"postcss-normalize": "^10.0.1",
|
|
105
|
+
"postcss-preset-env": "^7.4.3",
|
|
106
|
+
"postcss-resolution-independence": "^1.0.1",
|
|
107
|
+
"postcss-safe-parser": "^6.0.0",
|
|
108
|
+
"prompts": "^2.4.2",
|
|
109
|
+
"react": "^18.0.0",
|
|
110
|
+
"react-dev-utils": "^12.0.0",
|
|
111
|
+
"react-dom": "^18.0.0",
|
|
112
|
+
"react-refresh": "^0.11.0",
|
|
113
|
+
"react-test-renderer": "^18.0.0",
|
|
114
|
+
"resolution-independence": "^1.0.0",
|
|
115
|
+
"resolve": "^1.22.0",
|
|
116
|
+
"semver": "^7.3.5",
|
|
117
|
+
"source-map-loader": "^3.0.1",
|
|
118
|
+
"strip-ansi": "^6.0.1",
|
|
119
|
+
"style-loader": "^3.3.1",
|
|
120
|
+
"tailwindcss": "^3.0.23",
|
|
121
|
+
"tar": "^6.1.11",
|
|
122
|
+
"terser-webpack-plugin": "^5.3.1",
|
|
123
|
+
"v8-compile-cache": "^2.3.0",
|
|
124
|
+
"validate-npm-package-name": "^3.0.0",
|
|
125
|
+
"webpack": "5.64.4",
|
|
126
|
+
"webpack-dev-server": "4.6.0"
|
|
136
127
|
},
|
|
137
128
|
"optionalDependencies": {
|
|
138
|
-
"fsevents": "^2.
|
|
129
|
+
"fsevents": "^2.3.2"
|
|
139
130
|
},
|
|
140
131
|
"peerDependencies": {
|
|
141
132
|
"typescript": "^3.2.1 || ^4"
|
|
@@ -146,9 +137,9 @@
|
|
|
146
137
|
}
|
|
147
138
|
},
|
|
148
139
|
"devDependencies": {
|
|
149
|
-
"eslint-config-prettier": "^
|
|
150
|
-
"eslint-plugin-import": "^2.
|
|
151
|
-
"eslint-plugin-prettier": "^
|
|
152
|
-
"prettier": "^2.0
|
|
140
|
+
"eslint-config-prettier": "^8.5.0",
|
|
141
|
+
"eslint-plugin-import": "^2.25.4",
|
|
142
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
143
|
+
"prettier": "^2.6.0"
|
|
153
144
|
}
|
|
154
145
|
}
|