next-auto-build 1.0.6 → 1.0.7

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.
Files changed (2) hide show
  1. package/index.js +4 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -64,7 +64,10 @@ function runProductionBuild() {
64
64
  console.clear();
65
65
  log('Starting Production Build (Global Monitor Mode)...', 'build');
66
66
 
67
- const build = spawn(nextBin, ['build', '--webpack'], { stdio: 'inherit', shell: true });
67
+ const build = spawn(nextBin, ['build', '--webpack'], {
68
+ stdio: 'inherit',
69
+ shell: true
70
+ });
68
71
 
69
72
  build.on('close', (code) => {
70
73
  isBuilding = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-auto-build",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "main": "index.js",
5
5
  "bin": {
6
6
  "next-auto": "./index.js"