Skip to content

Commit 65bfa88

Browse files
committed
3.3.0 RC 1
1 parent 1e15dc4 commit 65bfa88

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

packages/react-scripts/config/webpack.config.wptheme.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ const postcssNormalize = require('postcss-normalize');
4141

4242
const appPackageJson = require(paths.appPackageJson);
4343

44-
const FileWatcherPlugin = require('@devloco/react-scripts-wptheme-utils/fileWatcherPlugin');
44+
const FileWatcherPlugin = require('@devloco/create-react-wptheme-utils/fileWatcherPlugin');
4545

46-
const wpThemeUserConfig = require('@devloco/react-scripts-wptheme-utils/getUserConfig')(
46+
const wpThemeUserConfig = require('@devloco/create-react-wptheme-utils/getUserConfig')(
4747
paths,
4848
process.env.NODE_ENV
4949
);

packages/react-scripts/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@devloco/react-scripts-wptheme",
3-
"version": "3.3.0-wp.1",
3+
"version": "3.3.0-wp.2",
44
"description": "Configuration and scripts for Create React WP Theme.",
55
"repository": "devloco/create-react-wptheme",
66
"author": "devloco",
@@ -93,7 +93,7 @@
9393
"webpack-dev-server": "3.9.0",
9494
"webpack-manifest-plugin": "2.2.0",
9595
"workbox-webpack-plugin": "4.3.1",
96-
"@devloco/create-react-wptheme-utils": "^3.3.0-wp.1"
96+
"@devloco/create-react-wptheme-utils": "^3.3.0-wp.2"
9797
},
9898
"devDependencies": {
9999
"react": "^16.11.0",

packages/react-scripts/scripts/wpbuild.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ const printFileSizesAfterBuild = FileSizeReporter.printFileSizesAfterBuild;
4949
const useYarn = fs.existsSync(paths.yarnLockFile);
5050

5151
const clearConsole = require('react-dev-utils/clearConsole');
52-
const wpThemePostInstallerInfo = require('@devloco/react-scripts-wptheme-utils/postInstallerInfo');
53-
const wpThemeFileFunctions = require('@devloco/react-scripts-wptheme-utils/fileFunctions');
52+
const wpThemePostInstallerInfo = require('@devloco/create-react-wptheme-utils/postInstallerInfo');
53+
const wpThemeFileFunctions = require('@devloco/create-react-wptheme-utils/fileFunctions');
5454
const copyPublicFolder = wpThemeFileFunctions.copyPublicFolder;
5555
const copyToThemeFolder = wpThemeFileFunctions.copyToThemeFolder;
5656
const cleanThemeFolder = wpThemeFileFunctions.cleanThemeFolder;

packages/react-scripts/scripts/wpstart.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ const paths = require('../config/paths-wptheme'); // wptheme - touched
5353
const configFactory = require('../config/webpack.config.wptheme');
5454
const config = configFactory('development');
5555
const appPackage = require(paths.appPackageJson);
56-
const wpThemeUserConfig = require('@devloco/react-scripts-wptheme-utils/getUserConfig')(
56+
const wpThemeUserConfig = require('@devloco/create-react-wptheme-utils/getUserConfig')(
5757
paths,
5858
process.env.NODE_ENV
5959
);
60-
const wpThemePostInstallerInfo = require('@devloco/react-scripts-wptheme-utils/postInstallerInfo');
61-
const wpThemeFileFunctions = require('@devloco/react-scripts-wptheme-utils/fileFunctions');
60+
const wpThemePostInstallerInfo = require('@devloco/create-react-wptheme-utils/postInstallerInfo');
61+
const wpThemeFileFunctions = require('@devloco/create-react-wptheme-utils/fileFunctions');
6262

6363
const copyPublicFolder = wpThemeFileFunctions.copyPublicFolder;
6464
const copyToThemeFolder = wpThemeFileFunctions.copyToThemeFolder;
@@ -70,7 +70,7 @@ const _wpThemeServer =
7070
wpThemeUserConfig &&
7171
wpThemeUserConfig.wpThemeServer &&
7272
wpThemeUserConfig.wpThemeServer.enable === true
73-
? require('@devloco/react-scripts-wptheme-utils/wpThemeServer')
73+
? require('@devloco/create-react-wptheme-utils/wpThemeServer')
7474
: null;
7575
// wptheme - added section - end
7676

0 commit comments

Comments
 (0)