Skip to content

Commit

Permalink
Publish addons with right cwd and don't exit
Browse files Browse the repository at this point in the history
Part of xtermjs#2165
  • Loading branch information
Tyriar committed Jun 15, 2019
1 parent 8de555d commit 91c4ca5
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions bin/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,8 @@ function checkAndPublishPackage(packageDir) {
// Set the version in package.json
const packageJsonFile = path.join(packageDir, 'package.json');
packageJson.version = nextVersion;
if (isDryRun) {
console.log(`Set version of ${packageJsonFile} to ${nextVersion}`);
} else {
console.log(`Set version of ${packageJsonFile} to ${nextVersion}`);
if (!isDryRun) {
fs.writeFileSync(packageJsonFile, JSON.stringify(packageJson, null, 2));
}

Expand All @@ -61,11 +60,16 @@ function checkAndPublishPackage(packageDir) {
if (!isStableRelease) {
args.push('--tag', 'beta');
}
if (isDryRun) {
console.log(`Spawn: npm ${args.join(' ')}`);
} else {
const result = cp.spawn('npm', args, { stdio: 'inherit' });
result.on('exit', code => process.exit(code));
console.log(`Spawn: npm ${args.join(' ')}`);
if (!isDryRun) {
const result = cp.spawnSync('npm', args, {
cwd: packageDir,
stdio: 'inherit'
});
if (result.status) {
console.error(`Spawn exited with code ${result.status}`);
process.exit(result.status);
}
}

console.groupEnd();
Expand Down

0 comments on commit 91c4ca5

Please sign in to comment.