@enact/cli 5.0.0-alpha.1 → 5.0.0-alpha.4
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 +27 -0
- package/commands/test.js +0 -5
- package/config/jest/jest.config.js +1 -2
- package/config/jest/setupTests.js +0 -6
- package/config/webpack.config.js +1 -1
- package/docs/building-apps.md +2 -2
- package/docs/installation.md +0 -6
- package/docs/testing-apps.md +0 -1
- package/npm-shrinkwrap.json +191 -577
- package/package.json +10 -12
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.4",
|
|
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>",
|
|
@@ -48,14 +48,13 @@
|
|
|
48
48
|
"@babel/preset-react": "^7.16.7",
|
|
49
49
|
"@babel/preset-typescript": "^7.16.7",
|
|
50
50
|
"@babel/runtime": "^7.16.7",
|
|
51
|
-
"@enact/dev-utils": "^5.0.0-alpha.
|
|
52
|
-
"@enact/template-sandstone": "^1.5.0-alpha.
|
|
51
|
+
"@enact/dev-utils": "^5.0.0-alpha.2",
|
|
52
|
+
"@enact/template-sandstone": "^1.5.0-alpha.2",
|
|
53
53
|
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
|
|
54
54
|
"@testing-library/jest-dom": "^5.14.1",
|
|
55
55
|
"@testing-library/react": "^13.0.0",
|
|
56
56
|
"@testing-library/react-hooks": "^8.0.0-alpha.1",
|
|
57
57
|
"@testing-library/user-event": "^13.2.0",
|
|
58
|
-
"@wojtekmaj/enzyme-adapter-react-17": "0.3.2",
|
|
59
58
|
"babel-jest": "^27.5.1",
|
|
60
59
|
"babel-loader": "^8.2.3",
|
|
61
60
|
"babel-plugin-dev-expression": "^0.2.3",
|
|
@@ -70,9 +69,14 @@
|
|
|
70
69
|
"css-minimizer-webpack-plugin": "^3.4.1",
|
|
71
70
|
"dotenv": "^16.0.0",
|
|
72
71
|
"dotenv-expand": "^8.0.3",
|
|
73
|
-
"enzyme": "3.11.0",
|
|
74
72
|
"eslint": "^8.12.0",
|
|
75
73
|
"eslint-config-enact": "^4.0.0",
|
|
74
|
+
"eslint-plugin-babel": "^5.3.1",
|
|
75
|
+
"eslint-plugin-enact": "^1.0.0",
|
|
76
|
+
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
77
|
+
"eslint-plugin-react": "^7.29.4",
|
|
78
|
+
"eslint-plugin-react-hooks": "^4.3.0",
|
|
79
|
+
"eslint-plugin-testing-library": "^5.2.1",
|
|
76
80
|
"eslint-webpack-plugin": "^3.1.1",
|
|
77
81
|
"expose-loader": "^3.1.0",
|
|
78
82
|
"file-loader": "^6.2.0",
|
|
@@ -83,7 +87,7 @@
|
|
|
83
87
|
"html-webpack-plugin": "^5.5.0",
|
|
84
88
|
"identity-obj-proxy": "^3.0.0",
|
|
85
89
|
"jest": "^27.5.1",
|
|
86
|
-
"jest-watch-typeahead": "
|
|
90
|
+
"jest-watch-typeahead": "0.6.5",
|
|
87
91
|
"less": "^4.1.2",
|
|
88
92
|
"less-loader": "^8.1.1",
|
|
89
93
|
"less-plugin-npm-import": "^2.1.0",
|
|
@@ -132,14 +136,8 @@
|
|
|
132
136
|
},
|
|
133
137
|
"devDependencies": {
|
|
134
138
|
"eslint-config-prettier": "^8.5.0",
|
|
135
|
-
"eslint-plugin-babel": "^5.3.1",
|
|
136
|
-
"eslint-plugin-enact": "^1.0.0",
|
|
137
139
|
"eslint-plugin-import": "^2.25.4",
|
|
138
|
-
"eslint-plugin-jsx-a11y": "^6.5.1",
|
|
139
140
|
"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
141
|
"prettier": "^2.6.0"
|
|
144
142
|
}
|
|
145
143
|
}
|