@enact/cli 5.0.0-alpha.2 → 5.0.0-alpha.5
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/CHANGELOG.md +38 -0
- package/README.md +5 -4
- package/commands/test.js +0 -5
- package/config/jest/jest.config.js +1 -3
- package/config/jest/setupTests.js +0 -6
- package/config/webpack.config.js +4 -2
- package/docs/building-apps.md +2 -2
- package/docs/index.md +1 -0
- package/docs/installation.md +0 -6
- 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 +45795 -4247
- package/package.json +15 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enact/cli",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.5",
|
|
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-alpha.
|
|
52
|
-
"@enact/template-sandstone": "^1.5.0-alpha.
|
|
52
|
+
"@enact/dev-utils": "^5.0.0-alpha.3",
|
|
53
|
+
"@enact/template-sandstone": "^1.5.0-alpha.3",
|
|
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",
|
|
@@ -70,9 +70,14 @@
|
|
|
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.
|
|
74
|
+
"eslint-config-enact": "^4.1.1",
|
|
75
|
+
"eslint-plugin-enact": "^1.0.1",
|
|
76
|
+
"eslint-plugin-jest": "^26.1.5",
|
|
77
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
78
|
+
"eslint-plugin-react": "^7.29.4",
|
|
79
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
80
|
+
"eslint-plugin-testing-library": "^5.2.1",
|
|
76
81
|
"eslint-webpack-plugin": "^3.1.1",
|
|
77
82
|
"expose-loader": "^3.1.0",
|
|
78
83
|
"file-loader": "^6.2.0",
|
|
@@ -83,7 +88,7 @@
|
|
|
83
88
|
"html-webpack-plugin": "^5.5.0",
|
|
84
89
|
"identity-obj-proxy": "^3.0.0",
|
|
85
90
|
"jest": "^27.5.1",
|
|
86
|
-
"jest-watch-typeahead": "
|
|
91
|
+
"jest-watch-typeahead": "0.6.5",
|
|
87
92
|
"less": "^4.1.2",
|
|
88
93
|
"less-loader": "^8.1.1",
|
|
89
94
|
"less-plugin-npm-import": "^2.1.0",
|
|
@@ -97,7 +102,7 @@
|
|
|
97
102
|
"postcss-loader": "^6.2.1",
|
|
98
103
|
"postcss-normalize": "^10.0.1",
|
|
99
104
|
"postcss-preset-env": "^7.4.3",
|
|
100
|
-
"postcss-resolution-independence": "^1.0
|
|
105
|
+
"postcss-resolution-independence": "^1.1.0",
|
|
101
106
|
"postcss-safe-parser": "^6.0.0",
|
|
102
107
|
"prompts": "^2.4.2",
|
|
103
108
|
"react": "^18.0.0",
|
|
@@ -132,14 +137,8 @@
|
|
|
132
137
|
},
|
|
133
138
|
"devDependencies": {
|
|
134
139
|
"eslint-config-prettier": "^8.5.0",
|
|
135
|
-
"eslint-plugin-babel": "^5.3.1",
|
|
136
|
-
"eslint-plugin-enact": "^1.0.0",
|
|
137
140
|
"eslint-plugin-import": "^2.25.4",
|
|
138
|
-
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
139
141
|
"eslint-plugin-prettier": "^4.0.0",
|
|
140
|
-
"eslint-plugin-react": "^7.29.4",
|
|
141
|
-
"eslint-plugin-react-hooks": "^4.3.0",
|
|
142
|
-
"eslint-plugin-testing-library": "^5.2.1",
|
|
143
142
|
"prettier": "^2.6.0"
|
|
144
143
|
}
|
|
145
144
|
}
|