@stacksjs/actions 0.61.16 → 0.61.17
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.
- package/dist/bump.js +1 -4
- package/dist/upgrade.js +1 -1
- package/package.json +1 -1
- package/src/bump.ts +5 -5
package/dist/bump.js
CHANGED
|
@@ -4,10 +4,7 @@ import {parseOptions, runCommand} from "@stacksjs/cli";
|
|
|
4
4
|
import {path as p} from "@stacksjs/path";
|
|
5
5
|
var options = parseOptions();
|
|
6
6
|
var changelogCommand = options?.dryRun ? "buddy changelog --quiet --dry-run" : "buddy changelog --quiet";
|
|
7
|
-
|
|
8
|
-
cwd: p.projectPath()
|
|
9
|
-
});
|
|
10
|
-
var bumpCommand = options?.dryRun ? "bunx bumpp ./package.json ./**/package.json ../ide/vscode/package.json --no-push" : "bunx bumpp ./package.json ./**/package.json ../ide/vscode/package.json --all";
|
|
7
|
+
var bumpCommand = options?.dryRun ? `bunx bumpp ./package.json ./**/package.json ../ide/vscode/package.json --no-push --execute "../scripts/generate-changelog-and-lint"` : `bunx bumpp ./package.json ./**/package.json ../ide/vscode/package.json --all --execute "../scripts/generate-changelog-and-lint"`;
|
|
11
8
|
console.log(`Running: ${bumpCommand}`);
|
|
12
9
|
console.log(`In frameworkPath: ${p.frameworkPath()}`);
|
|
13
10
|
await runCommand(bumpCommand, {
|
package/dist/upgrade.js
CHANGED
|
@@ -7,7 +7,7 @@ import {log} from "@stacksjs/logging";
|
|
|
7
7
|
import {projectPath} from "@stacksjs/path";
|
|
8
8
|
import * as storage from "@stacksjs/storage";
|
|
9
9
|
// package.json
|
|
10
|
-
var version = "0.61.
|
|
10
|
+
var version = "0.61.17";
|
|
11
11
|
|
|
12
12
|
// src/upgrade.ts
|
|
13
13
|
function checkForUncommittedChanges(options) {
|
package/package.json
CHANGED
package/src/bump.ts
CHANGED
|
@@ -4,13 +4,13 @@ import { path as p } from '@stacksjs/path'
|
|
|
4
4
|
const options = parseOptions()
|
|
5
5
|
const changelogCommand = options?.dryRun ? 'buddy changelog --quiet --dry-run' : 'buddy changelog --quiet'
|
|
6
6
|
|
|
7
|
-
await runCommand(changelogCommand, {
|
|
8
|
-
|
|
9
|
-
})
|
|
7
|
+
// await runCommand(changelogCommand, {
|
|
8
|
+
// cwd: p.projectPath(),
|
|
9
|
+
// })
|
|
10
10
|
|
|
11
11
|
const bumpCommand = options?.dryRun
|
|
12
|
-
?
|
|
13
|
-
:
|
|
12
|
+
? `bunx bumpp ./package.json ./**/package.json ../ide/vscode/package.json --no-push --execute "../scripts/generate-changelog-and-lint"`
|
|
13
|
+
: `bunx bumpp ./package.json ./**/package.json ../ide/vscode/package.json --all --execute "../scripts/generate-changelog-and-lint"`
|
|
14
14
|
|
|
15
15
|
console.log(`Running: ${bumpCommand}`)
|
|
16
16
|
console.log(`In frameworkPath: ${p.frameworkPath()}`)
|