@uirouter/publish-scripts 2.6.0 → 2.6.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.
File without changes
File without changes
package/docgen/clone.sh CHANGED
File without changes
package/docgen/docgen.sh CHANGED
File without changes
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uirouter/publish-scripts",
3
- "version": "2.6.0",
3
+ "version": "2.6.2",
4
4
  "description": "Helper scripts for publishing UI-Router projects",
5
5
  "main": "x",
6
6
  "repository": {
package/release.js CHANGED
@@ -67,7 +67,7 @@ if (readlineSync.keyInYN('\n\nUpdate CHANGELOG?')) {
67
67
  const depsArg = yargs.argv.deps ? `--deps ${yargs.argv.deps.join(' ')}` : '';
68
68
  const show_changelog = path.resolve(__dirname, 'show_changelog.js');
69
69
 
70
- changelog = _exec(`${show_changelog} ${depsArg}`, true).stdout;
70
+ changelog = _exec(`node ${show_changelog} ${depsArg}`, true).stdout;
71
71
 
72
72
  console.log('CHANGELOG:\n\n');
73
73
  console.log(changelog);
package/show_changelog.js CHANGED
@@ -52,7 +52,7 @@ if (deps.length) {
52
52
  // because conventional-changelog-core doesn't seem to have a callback to tap into
53
53
  const fromArg = (from ? ` --from ${from}` : '');
54
54
  const toArg = (to ? ` --to ${to}` : '');
55
- let stdout = _exec(`${scriptPath} ${fromArg} ${toArg}`, true).stdout;
55
+ let stdout = _exec(`node ${scriptPath} ${fromArg} ${toArg}`, true).stdout;
56
56
  console.log(stdout.trim());
57
57
 
58
58
  shelljs.mkdir('.show_changelog.tmp');
package/show_version.js CHANGED
File without changes