@stacksjs/actions 0.70.3 → 0.70.5
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.d.ts +2 -1
- package/dist/bump.js +1 -1
- package/dist/helpers/component-meta.js +22 -6
- package/dist/upgrade.js +1 -1
- package/package.json +17 -17
package/dist/bump.d.ts
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
declare const options: unknown;
|
|
1
|
+
declare const options: unknown;
|
|
2
|
+
declare const bumpCommand: unknown;
|
package/dist/bump.js
CHANGED
|
@@ -4,7 +4,7 @@ import { log, 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
|
-
var bumpCommand = options?.dryRun ? `bunx --bun bumpp ./package.json ./**/package.json ../package.json ../defaults/ide/vscode/package.json ../views/** ../cloud/package.json ../server/package.json ../orm/package.json ../docs/package.json ../api/package.json ../email/package.json ../libs/**/package.json ../system-tray/package.json --no-push --execute "../scripts/
|
|
7
|
+
var bumpCommand = options?.dryRun ? `bunx --bun bumpp ./package.json ./**/package.json ../package.json ../defaults/ide/vscode/package.json ../views/** ../cloud/package.json ../server/package.json ../orm/package.json ../docs/package.json ../api/package.json ../email/package.json ../libs/**/package.json ../system-tray/package.json --no-push --execute "../scripts/install"` : `bunx --bun bumpp ./package.json ./**/package.json ../package.json ../defaults/ide/vscode/package.json ../views/** ../cloud/package.json ../server/package.json ../orm/package.json ../docs/package.json ../api/package.json ../email/package.json ../libs/**/package.json ../system-tray/package.json --all --execute "../scripts/install"`;
|
|
8
8
|
log.debug(`Running: ${bumpCommand}`);
|
|
9
9
|
log.debug(`In frameworkPath: ${p.frameworkPath()}`);
|
|
10
10
|
await runCommand(bumpCommand, {
|
|
@@ -189494,7 +189494,8 @@ var require_cjs = __commonJS((exports, module) => {
|
|
|
189494
189494
|
return SubscriberFlags2;
|
|
189495
189495
|
})(SubscriberFlags || {});
|
|
189496
189496
|
function createReactiveSystem({ updateComputed, notifyEffect: notifyEffect2 }) {
|
|
189497
|
-
|
|
189497
|
+
let queuedEffects;
|
|
189498
|
+
let queuedEffectsTail;
|
|
189498
189499
|
return { link(dep, sub) {
|
|
189499
189500
|
const currentDep = sub.depsTail;
|
|
189500
189501
|
if (currentDep !== undefined && currentDep.dep === dep) {
|
|
@@ -189533,12 +189534,20 @@ var require_cjs = __commonJS((exports, module) => {
|
|
|
189533
189534
|
continue;
|
|
189534
189535
|
}
|
|
189535
189536
|
if (subFlags & 2) {
|
|
189536
|
-
|
|
189537
|
+
if (queuedEffectsTail !== undefined) {
|
|
189538
|
+
queuedEffectsTail = queuedEffectsTail.next = { effect: sub, next: undefined };
|
|
189539
|
+
} else {
|
|
189540
|
+
queuedEffectsTail = queuedEffects = { effect: sub, next: undefined };
|
|
189541
|
+
}
|
|
189537
189542
|
}
|
|
189538
189543
|
} else if (!(subFlags & (4 | targetFlag))) {
|
|
189539
189544
|
sub.flags = subFlags | targetFlag | 8;
|
|
189540
189545
|
if ((subFlags & (2 | 8)) === 2) {
|
|
189541
|
-
|
|
189546
|
+
if (queuedEffectsTail !== undefined) {
|
|
189547
|
+
queuedEffectsTail = queuedEffectsTail.next = { effect: sub, next: undefined };
|
|
189548
|
+
} else {
|
|
189549
|
+
queuedEffectsTail = queuedEffects = { effect: sub, next: undefined };
|
|
189550
|
+
}
|
|
189542
189551
|
}
|
|
189543
189552
|
} else if (!(subFlags & targetFlag) && subFlags & 224 && isValidLink(link22, sub)) {
|
|
189544
189553
|
sub.flags = subFlags | targetFlag;
|
|
@@ -189608,8 +189617,11 @@ var require_cjs = __commonJS((exports, module) => {
|
|
|
189608
189617
|
} while (link22 !== undefined);
|
|
189609
189618
|
}
|
|
189610
189619
|
}, processEffectNotifications() {
|
|
189611
|
-
while (queuedEffects
|
|
189612
|
-
const effect2 = queuedEffects.
|
|
189620
|
+
while (queuedEffects !== undefined) {
|
|
189621
|
+
const effect2 = queuedEffects.effect;
|
|
189622
|
+
if ((queuedEffects = queuedEffects.next) === undefined) {
|
|
189623
|
+
queuedEffectsTail = undefined;
|
|
189624
|
+
}
|
|
189613
189625
|
if (!notifyEffect2(effect2)) {
|
|
189614
189626
|
effect2.flags &= ~8;
|
|
189615
189627
|
}
|
|
@@ -189709,7 +189721,11 @@ var require_cjs = __commonJS((exports, module) => {
|
|
|
189709
189721
|
if ((subFlags & (64 | 32)) === 64) {
|
|
189710
189722
|
sub.flags = subFlags | 32 | 8;
|
|
189711
189723
|
if ((subFlags & (2 | 8)) === 2) {
|
|
189712
|
-
|
|
189724
|
+
if (queuedEffectsTail !== undefined) {
|
|
189725
|
+
queuedEffectsTail = queuedEffectsTail.next = { effect: sub, next: undefined };
|
|
189726
|
+
} else {
|
|
189727
|
+
queuedEffectsTail = queuedEffects = { effect: sub, next: undefined };
|
|
189728
|
+
}
|
|
189713
189729
|
}
|
|
189714
189730
|
}
|
|
189715
189731
|
link22 = link22.nextSub;
|
package/dist/upgrade.js
CHANGED
|
@@ -9,7 +9,7 @@ import { log } from "@stacksjs/logging";
|
|
|
9
9
|
import { projectPath } from "@stacksjs/path";
|
|
10
10
|
import * as storage from "@stacksjs/storage";
|
|
11
11
|
// package.json
|
|
12
|
-
var version = "0.70.
|
|
12
|
+
var version = "0.70.5";
|
|
13
13
|
|
|
14
14
|
// src/upgrade.ts
|
|
15
15
|
function checkForUncommittedChanges(options) {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/actions",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.70.
|
|
4
|
+
"version": "0.70.5",
|
|
5
5
|
"description": "The Stacks actions.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
|
|
@@ -42,22 +42,22 @@
|
|
|
42
42
|
"prepublishOnly": "bun run build"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@stacksjs/api": "0.70.
|
|
46
|
-
"@stacksjs/cli": "0.70.
|
|
47
|
-
"@stacksjs/config": "0.70.
|
|
48
|
-
"@stacksjs/database": "0.70.
|
|
49
|
-
"@stacksjs/development": "0.70.
|
|
50
|
-
"@stacksjs/dns": "0.70.
|
|
51
|
-
"@stacksjs/enums": "0.70.
|
|
52
|
-
"@stacksjs/env": "0.70.
|
|
53
|
-
"@stacksjs/error-handling": "0.70.
|
|
54
|
-
"@stacksjs/logging": "0.70.
|
|
55
|
-
"@stacksjs/path": "0.70.
|
|
56
|
-
"@stacksjs/security": "0.70.
|
|
57
|
-
"@stacksjs/storage": "0.70.
|
|
58
|
-
"@stacksjs/strings": "0.70.
|
|
59
|
-
"@stacksjs/utils": "0.70.
|
|
60
|
-
"@stacksjs/validation": "0.70.
|
|
45
|
+
"@stacksjs/api": "0.70.3",
|
|
46
|
+
"@stacksjs/cli": "0.70.3",
|
|
47
|
+
"@stacksjs/config": "0.70.3",
|
|
48
|
+
"@stacksjs/database": "0.70.3",
|
|
49
|
+
"@stacksjs/development": "0.70.3",
|
|
50
|
+
"@stacksjs/dns": "0.70.3",
|
|
51
|
+
"@stacksjs/enums": "0.70.3",
|
|
52
|
+
"@stacksjs/env": "0.70.3",
|
|
53
|
+
"@stacksjs/error-handling": "0.70.3",
|
|
54
|
+
"@stacksjs/logging": "0.70.3",
|
|
55
|
+
"@stacksjs/path": "0.70.3",
|
|
56
|
+
"@stacksjs/security": "0.70.3",
|
|
57
|
+
"@stacksjs/storage": "0.70.3",
|
|
58
|
+
"@stacksjs/strings": "0.70.3",
|
|
59
|
+
"@stacksjs/utils": "0.70.3",
|
|
60
|
+
"@stacksjs/validation": "0.70.3",
|
|
61
61
|
"markdown-it": "^14.1.0",
|
|
62
62
|
"vue-component-meta": "^2.2.8"
|
|
63
63
|
}
|