You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2020. It is now read-only.
console.log('Backing up the original package.json');
51
55
backupOriginalPackageJson();
52
56
console.log('Creating the nightly version of package.json');
53
57
createNightlyVersionInPackageJson();
54
58
console.log('Publishing to npm');
55
-
publishToNpm();
59
+
publishToNpm(tagName);
56
60
console.log('Restoring original package.json');
57
61
revertPackageJson();
58
-
console.log('Building Nightly ... DONE');
62
+
console.log(`Building ${tagName}... DONE`);
59
63
}
60
64
catch(ex){
61
65
console.log(`Something went wrong with publishing the nightly. This process modifies the package.json, so restore it before committing code! - ${ex.message}`);
0 commit comments