Skip to content

Commit a899aba

Browse files
committed
Update Utils incl. wpThemeErrorOverlay
1 parent 88ceacd commit a899aba

File tree

5 files changed

+651
-658
lines changed

5 files changed

+651
-658
lines changed

packages/create-react-wptheme-utils/create-react-wptheme-error-overlay/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devloco/create-react-wptheme-error-overlay",
3-
"version": "3.3.0-wp.1",
3+
"version": "3.3.1-wp.1",
44
"description": "create-react-wptheme client with error overlay",
55
"main": "wptheme-error-overlay.js",
66
"scripts": {
@@ -17,15 +17,15 @@
1717
"wpThemeErrorOverlay.js"
1818
],
1919
"dependencies": {
20-
"react-dev-utils": "^10.0.0",
21-
"react-error-overlay": "^6.0.4"
20+
"react-dev-utils": "^10.1.0",
21+
"react-error-overlay": "^6.0.5"
2222
},
2323
"devDependencies": {
24-
"@babel/code-frame": "^7.5.5",
25-
"@babel/core": "^7.7.5",
24+
"@babel/code-frame": "^7.8.3",
25+
"@babel/core": "^7.8.4",
2626
"@webpack-cli/info": "^0.2.0",
2727
"babel-loader": "^8.0.6",
28-
"webpack": "^4.41.2",
28+
"webpack": "^4.41.5",
2929
"webpack-cli": "^3.3.10"
3030
}
3131
}

packages/create-react-wptheme-utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devloco/create-react-wptheme-utils",
3-
"version": "3.3.0-wp.3",
3+
"version": "3.3.1-wp.1",
44
"description": "Utilities used by create-react-wptheme.",
55
"engines": {
66
"node": ">=8"
@@ -29,7 +29,7 @@
2929
],
3030
"dependencies": {
3131
"chalk": "^3.0.0",
32-
"chokidar": "^3.3.0",
32+
"chokidar": "^3.3.1",
3333
"shelljs": "^0.8.3",
3434
"fs-extra": "^8.1.0",
3535
"ws": "^7.2.1"

packages/create-react-wptheme-utils/wpThemeErrorOverlay.js

Lines changed: 640 additions & 641 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/create-react-wptheme/createReactWpTheme.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@
88
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
99
// /!\ DO NOT MODIFY THIS FILE /!\
1010
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11-
//
12-
// create-react-wptheme is installed globally on people's computers. This means
13-
// that it is extremely difficult to have them upgrade the version and
14-
// because there's only one global version installed, it is very prone to
15-
// breaking changes.
16-
//
1711
// The only job of create-react-wptheme is to init the repository and then
1812
// forward all the commands to the local version of create-react-wptheme.
1913
//
@@ -43,14 +37,14 @@ const execSync = require("child_process").execSync;
4337
const spawn = require("cross-spawn");
4438
const dns = require("dns");
4539
const url = require("url");
46-
const envinfo = require("envinfo");
40+
// const envinfo = require("envinfo");
4741

4842
const packageJson = require("./package.json");
4943
const _wpThemeVersion = packageJson.version;
5044
const _createReactAppVersion = _wpThemeVersion.split("-wp.")[0];
5145

5246
// Check these!!!!
53-
const _reactScriptsWpThemeVersion = "^3.3.0-wp.11";
47+
const _reactScriptsWpThemeVersion = "^3.3.1-wp.1";
5448
const _getScriptsPath = function() {
5549
return scriptsFromNpm();
5650
};

packages/create-react-wptheme/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-react-wptheme",
3-
"version": "3.3.0-wp.7",
3+
"version": "3.3.1-wp.1",
44
"description": "Create React-enabled WP themes.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)