stacks 0.58.64 → 0.58.65
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/core/actions/dist/src/index.js +0 -3
- package/core/actions/dist/src/release.js +2 -5
- package/core/actions/dist/src/upgrade.js +1 -1
- package/core/actions/package.json +1 -1
- package/core/actions/src/action.ts +1 -2
- package/core/ai/package.json +1 -1
- package/core/alias/package.json +1 -1
- package/core/analytics/package.json +1 -1
- package/core/api/package.json +1 -1
- package/core/arrays/package.json +1 -1
- package/core/auth/package.json +1 -1
- package/core/buddy/package.json +1 -1
- package/core/build/package.json +1 -1
- package/core/bun-create/bud/package.json +1 -1
- package/core/bun-create/buddy/package.json +1 -1
- package/core/bun-create/stack/package.json +1 -1
- package/core/bun-create/stacks/package.json +1 -1
- package/core/bun-create/stx/package.json +1 -1
- package/core/bun-plugin-yaml/package.json +1 -1
- package/core/cache/package.json +1 -1
- package/core/chat/package.json +1 -1
- package/core/cli/dist/index.js +1 -1
- package/core/cli/package.json +1 -1
- package/core/cloud/dist/index.js +1 -1
- package/core/cloud/package.json +1 -1
- package/core/cloud/src/cloud/aws-sdk-layer/nodejs/package.json +1 -1
- package/core/cloud/src/cloud/compute.ts +1 -1
- package/core/cloud/src/cloud/router-layer/nodejs/package.json +2 -2
- package/core/collections/package.json +1 -1
- package/core/config/package.json +1 -1
- package/core/database/package.json +1 -1
- package/core/datetime/package.json +1 -1
- package/core/desktop/package.json +3 -3
- package/core/development/package.json +1 -1
- package/core/dns/package.json +1 -1
- package/core/docs/package.json +1 -1
- package/core/email/package.json +1 -1
- package/core/enums/package.json +1 -1
- package/core/env/package.json +1 -1
- package/core/error-handling/package.json +1 -1
- package/core/eslint-config/package.json +2 -2
- package/core/events/package.json +1 -1
- package/core/faker/package.json +1 -1
- package/core/git/package.json +1 -1
- package/core/health/package.json +1 -1
- package/core/http/package.json +1 -1
- package/core/lint/package.json +1 -1
- package/core/logging/package.json +1 -1
- package/core/notifications/package.json +1 -1
- package/core/objects/package.json +1 -1
- package/core/orm/package.json +1 -1
- package/core/path/package.json +1 -1
- package/core/path/src/index.ts +1 -0
- package/core/payments/package.json +1 -1
- package/core/push/package.json +1 -1
- package/core/query-builder/package.json +1 -1
- package/core/queue/package.json +1 -1
- package/core/raycast/package.json +1 -1
- package/core/realtime/package.json +1 -1
- package/core/repl/package.json +1 -1
- package/core/router/package.json +1 -1
- package/core/scheduler/package.json +1 -1
- package/core/search-engine/package.json +1 -1
- package/core/security/package.json +1 -1
- package/core/server/package.json +1 -1
- package/core/signals/package.json +1 -1
- package/core/slug/package.json +1 -1
- package/core/sms/package.json +1 -1
- package/core/storage/package.json +1 -1
- package/core/strings/package.json +1 -1
- package/core/tables/package.json +1 -1
- package/core/testing/package.json +1 -1
- package/core/tinker/package.json +1 -1
- package/core/tunnel/package.json +1 -1
- package/core/types/package.json +2 -2
- package/core/ui/package.json +3 -3
- package/core/utils/dist/index.js +1 -1
- package/core/utils/package.json +1 -1
- package/core/validation/package.json +1 -1
- package/core/vite/dist/index.js +1 -1
- package/core/vite/package.json +1 -1
- package/core/whois/package.json +1 -1
- package/core/x-ray/package.json +1 -1
- package/core/zsh-buddy/package.json +1 -1
- package/ide/vscode/package.json +1 -1
- package/package.json +1 -1
|
@@ -515,8 +515,6 @@ export default <Model> {
|
|
|
515
515
|
}
|
|
516
516
|
|
|
517
517
|
// src/action.ts
|
|
518
|
-
import {log as log7} from "@stacksjs/logging";
|
|
519
|
-
|
|
520
518
|
class Action3 {
|
|
521
519
|
name;
|
|
522
520
|
description;
|
|
@@ -526,7 +524,6 @@ class Action3 {
|
|
|
526
524
|
enabled;
|
|
527
525
|
handle;
|
|
528
526
|
constructor({ name, description, handle, rate, tries, backoff, enabled }) {
|
|
529
|
-
log7.info(`Action ${name} created`);
|
|
530
527
|
this.name = name;
|
|
531
528
|
this.description = description;
|
|
532
529
|
this.rate = rate;
|
|
@@ -517,8 +517,6 @@ export default <Model> {
|
|
|
517
517
|
}
|
|
518
518
|
|
|
519
519
|
// src/action.ts
|
|
520
|
-
import {log as log7} from "@stacksjs/logging";
|
|
521
|
-
|
|
522
520
|
class Action3 {
|
|
523
521
|
name;
|
|
524
522
|
description;
|
|
@@ -528,7 +526,6 @@ class Action3 {
|
|
|
528
526
|
enabled;
|
|
529
527
|
handle;
|
|
530
528
|
constructor({ name, description, handle, rate, tries, backoff, enabled }) {
|
|
531
|
-
log7.info(`Action ${name} created`);
|
|
532
529
|
this.name = name;
|
|
533
530
|
this.description = description;
|
|
534
531
|
this.rate = rate;
|
|
@@ -541,7 +538,7 @@ class Action3 {
|
|
|
541
538
|
// src/release.ts
|
|
542
539
|
import {projectPath as projectPath4} from "@stacksjs/path";
|
|
543
540
|
import {Action as Action4} from "@stacksjs/enums";
|
|
544
|
-
import {log as
|
|
541
|
+
import {log as log7} from "@stacksjs/logging";
|
|
545
542
|
import {app} from "@stacksjs/config";
|
|
546
543
|
await runActions([
|
|
547
544
|
Action4.GenerateLibraryEntries,
|
|
@@ -551,4 +548,4 @@ await runActions([
|
|
|
551
548
|
cwd: projectPath4(),
|
|
552
549
|
stdin: "inherit"
|
|
553
550
|
});
|
|
554
|
-
|
|
551
|
+
log7.success(`Successfully released ${app.name}`);
|
|
@@ -7,7 +7,7 @@ import {projectPath} from "@stacksjs/path";
|
|
|
7
7
|
import * as storage from "@stacksjs/storage";
|
|
8
8
|
import {NpmScript} from "@stacksjs/enums";
|
|
9
9
|
// package.json
|
|
10
|
-
var version = "0.58.
|
|
10
|
+
var version = "0.58.65";
|
|
11
11
|
|
|
12
12
|
// src/upgrade.ts
|
|
13
13
|
function checkForUncommittedChanges(options) {
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { JobOptions } from '@stacksjs/types'
|
|
2
|
-
import { log } from '@stacksjs/logging'
|
|
3
2
|
|
|
4
3
|
interface ActionOptions {
|
|
5
4
|
name?: string
|
|
@@ -21,7 +20,7 @@ export class Action {
|
|
|
21
20
|
handle: () => Promise<any>
|
|
22
21
|
|
|
23
22
|
constructor({ name, description, handle, rate, tries, backoff, enabled }: ActionOptions) {
|
|
24
|
-
log.
|
|
23
|
+
// log.debug(`Action ${name} created`) // TODO
|
|
25
24
|
|
|
26
25
|
this.name = name
|
|
27
26
|
this.description = description
|
package/core/ai/package.json
CHANGED
package/core/alias/package.json
CHANGED
package/core/api/package.json
CHANGED
package/core/arrays/package.json
CHANGED
package/core/auth/package.json
CHANGED
package/core/buddy/package.json
CHANGED
package/core/build/package.json
CHANGED
package/core/cache/package.json
CHANGED
package/core/chat/package.json
CHANGED
package/core/cli/dist/index.js
CHANGED
|
@@ -502,7 +502,7 @@ import {log as log3} from "@stacksjs/logging";
|
|
|
502
502
|
import {ExitCode as ExitCode2} from "@stacksjs/types";
|
|
503
503
|
import {bgCyan as bgCyan2, bold as bold2, cyan as cyan2, dim as dim2, gray as gray2, green as green2, italic as italic2} from "kolorist";
|
|
504
504
|
// package.json
|
|
505
|
-
var version = "0.58.
|
|
505
|
+
var version = "0.58.65";
|
|
506
506
|
|
|
507
507
|
// src/helpers.ts
|
|
508
508
|
async function intro(command2, options) {
|
package/core/cli/package.json
CHANGED
package/core/cloud/dist/index.js
CHANGED
|
@@ -1713,7 +1713,7 @@ class ComputeStack {
|
|
|
1713
1713
|
port: 3000,
|
|
1714
1714
|
healthCheck: {
|
|
1715
1715
|
interval: Duration6.seconds(6),
|
|
1716
|
-
path: "/api/
|
|
1716
|
+
path: "/api/healthy",
|
|
1717
1717
|
protocol: elbv2.Protocol.HTTP,
|
|
1718
1718
|
timeout: Duration6.seconds(5),
|
|
1719
1719
|
healthyThresholdCount: 2,
|
package/core/cloud/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stacks-router-layer",
|
|
3
|
-
"version": "0.58.
|
|
3
|
+
"version": "0.58.65",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,6 +10,6 @@
|
|
|
10
10
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@stacksjs/router": "^0.58.
|
|
13
|
+
"@stacksjs/router": "^0.58.64"
|
|
14
14
|
}
|
|
15
15
|
}
|
package/core/config/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/desktop",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.65",
|
|
5
5
|
"description": "The Stacks Desktop engine.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"@tauri-apps/cli": "^1.5.9",
|
|
67
67
|
"unified-network": "^0.6.4",
|
|
68
68
|
"unstorage": "^1.10.1",
|
|
69
|
-
"vue": "^3.4.
|
|
69
|
+
"vue": "^3.4.19"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@stacksjs/build": "workspace:*",
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"@tauri-apps/cli": "^1.5.9",
|
|
76
76
|
"unified-network": "^0.6.4",
|
|
77
77
|
"unstorage": "^1.10.1",
|
|
78
|
-
"vue": "^3.4.
|
|
78
|
+
"vue": "^3.4.19"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@stacksjs/development": "workspace:*"
|
package/core/dns/package.json
CHANGED
package/core/docs/package.json
CHANGED
package/core/email/package.json
CHANGED
package/core/enums/package.json
CHANGED
package/core/env/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/eslint-config",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.65",
|
|
5
5
|
"description": "The Stacks.js ESLint config preset, heavily inspired by Anthony's ESLint config.",
|
|
6
6
|
"author": "Anthony Fu <anthonyfu117@hotmail.com> (https://github.com/antfu/)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"eslint-plugin-perfectionist": "^2.5.0",
|
|
89
89
|
"eslint-plugin-toml": "^0.9.2",
|
|
90
90
|
"eslint-plugin-unicorn": "^51.0.1",
|
|
91
|
-
"eslint-plugin-unused-imports": "^3.
|
|
91
|
+
"eslint-plugin-unused-imports": "^3.1.0",
|
|
92
92
|
"eslint-plugin-vitest": "^0.3.22",
|
|
93
93
|
"eslint-plugin-vue": "^9.21.1",
|
|
94
94
|
"eslint-plugin-yml": "^1.12.2",
|
package/core/events/package.json
CHANGED
package/core/faker/package.json
CHANGED
package/core/git/package.json
CHANGED
package/core/health/package.json
CHANGED
package/core/http/package.json
CHANGED
package/core/lint/package.json
CHANGED
package/core/orm/package.json
CHANGED
package/core/path/package.json
CHANGED
package/core/path/src/index.ts
CHANGED
package/core/push/package.json
CHANGED
package/core/queue/package.json
CHANGED
package/core/repl/package.json
CHANGED
package/core/router/package.json
CHANGED
package/core/server/package.json
CHANGED
package/core/slug/package.json
CHANGED
package/core/sms/package.json
CHANGED
package/core/tables/package.json
CHANGED
package/core/tinker/package.json
CHANGED
package/core/tunnel/package.json
CHANGED
package/core/types/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/types",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.65",
|
|
5
5
|
"description": "The Stacks framework types.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"vite-plugin-pwa": "^0.18.1",
|
|
79
79
|
"vite-ssg": "^0.23.6",
|
|
80
80
|
"vitepress": "1.0.0-rc.42",
|
|
81
|
-
"vue": "^3.4.
|
|
81
|
+
"vue": "^3.4.19"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
84
|
"aws-cdk-lib": "^2.127.0",
|
package/core/ui/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.58.
|
|
4
|
+
"version": "0.58.65",
|
|
5
5
|
"description": "The Stacks UI engine.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"license": "MIT",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"pinia": "^2.1.7",
|
|
66
66
|
"unocss": "^0.58.5",
|
|
67
67
|
"vite-plugin-vue-layouts": "^0.11.0",
|
|
68
|
-
"vue": "^3.4.
|
|
68
|
+
"vue": "^3.4.19",
|
|
69
69
|
"vue-tsc": "^1.8.27"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"unocss": "^0.58.5",
|
|
85
85
|
"unocss-preset-primitives": "0.0.2-beta.0",
|
|
86
86
|
"vite-plugin-vue-layouts": "^0.11.0",
|
|
87
|
-
"vue": "^3.4.
|
|
87
|
+
"vue": "^3.4.19",
|
|
88
88
|
"vue-tsc": "^1.8.27"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
package/core/utils/dist/index.js
CHANGED
package/core/utils/package.json
CHANGED
package/core/vite/dist/index.js
CHANGED
|
@@ -609,7 +609,7 @@ var web_components_default = defineConfig6(({ command }) => {
|
|
|
609
609
|
// src/plugin/docs.ts
|
|
610
610
|
import {kolorist as c2} from "@stacksjs/cli";
|
|
611
611
|
// package.json
|
|
612
|
-
var version = "0.58.
|
|
612
|
+
var version = "0.58.65";
|
|
613
613
|
|
|
614
614
|
// src/plugin/docs.ts
|
|
615
615
|
var docsEngine = {
|
package/core/vite/package.json
CHANGED
package/core/whois/package.json
CHANGED
package/core/x-ray/package.json
CHANGED
package/ide/vscode/package.json
CHANGED