wp-blank-scripts 3.0.1-beta.0 → 3.0.1

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.
@@ -164,7 +164,7 @@ module.exports = async (envConfig = {}, buildOptions, failOnError = false) => {
164
164
 
165
165
  if (stats.hasErrors()) {
166
166
  info.errors.forEach((error) => {
167
- console.log(chalk.red(error));
167
+ console.log(error);
168
168
  });
169
169
 
170
170
  logger.error('Build finished with errors');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wp-blank-scripts",
3
- "version": "3.0.1-beta.0",
3
+ "version": "3.0.1",
4
4
  "description": "Personal Wordpress Scripts",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -282,6 +282,7 @@ function makeBaseConfig(options) {
282
282
  minimizer: [
283
283
  new TerserPlugin({
284
284
  parallel: true,
285
+ include: [sourcePath],
285
286
  terserOptions: {
286
287
  sourceMap: true,
287
288
  keep_classnames: true,