sdc-build-wp 2.0.0 → 2.0.2

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.
@@ -8,7 +8,8 @@ const buildBrowserSync = () => {
8
8
  proxy: project.package.sdc?.browsersync?.localProxyURL,
9
9
  files: [
10
10
  project.path + '/dist/**/*',
11
- project.path + '/**/*.php'
11
+ project.path + '/**/*.php',
12
+ project.path + '/**/*.html'
12
13
  ],
13
14
  open: project.package.sdc?.open || false,
14
15
  https: (process.env.SSL_KEY_PATH && process.env.SSL_CRT_PATH ? {
package/lib/style.js CHANGED
@@ -22,7 +22,7 @@ const buildColors = async () => {
22
22
  try {
23
23
  await promises.writeFile(project.path + '/_src/style/partials/_colors.scss', colorFileData);
24
24
  } catch {
25
- log('error', `Failed to read write colors.scss - See above error.`);
25
+ log('error', `Failed to write auto-generated _colors.scss - See above error.`);
26
26
  }
27
27
  }
28
28
  } catch {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sdc-build-wp",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "Custom WordPress build process.",
5
5
  "author": {
6
6
  "name": "Robert Sefer",