Skip to content
This repository was archived by the owner on Feb 7, 2022. It is now read-only.

parallel-webpack 3.0.0 alpha #70

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Don't add trailing commas on bin files
  • Loading branch information
Efe Gürkan YALAMAN committed Feb 16, 2018
commit 2975857d12d550facb1972493dd7559516d729d8
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"trailingComma": "all",
"overrides": [
{
"files": "**/build/**",
"files": "**/{build,bin}/**",
"options": {
"trailingComma": "es5"
}
Expand Down
8 changes: 4 additions & 4 deletions bin/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ let configPath;

if (argv.version) {
process.stdout.write(
'parallel-webpack ' + chalk.blue(require('../package').version) + '\n',
'parallel-webpack ' + chalk.blue(require('../package').version) + '\n'
);
} else {
try {
Expand Down Expand Up @@ -55,8 +55,8 @@ if (argv.version) {
return JSON.parse(stat);
}),
null,
2,
) + '\n',
2
) + '\n'
);
}
})
Expand All @@ -73,7 +73,7 @@ if (argv.version) {
chalk.red('[WEBPACK]') +
' Could not load configuration ' +
chalk.underline(process.cwd() + '/' + argv.config) +
'\n',
'\n'
);
}
process.exit(1);
Expand Down