@stacksjs/actions 0.70.9 → 0.70.11
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/build/core.js +1 -1
- package/dist/build.js +18 -3
- package/dist/chunk-1hqs8kt1.js +179252 -0
- package/dist/{chunk-fxan91t8.js → chunk-2dvnt46s.js} +31 -31
- package/dist/chunk-38cnnp2b.js +3823 -0
- package/dist/chunk-3d7m14ee.js +212 -0
- package/dist/chunk-76zhb40c.js +92 -0
- package/dist/chunk-7s5qcjkt.js +105 -0
- package/dist/{chunk-v1qz355d.js → chunk-8fdqje2t.js} +4 -4
- package/dist/chunk-9exgwfkw.js +1283 -0
- package/dist/chunk-a13x0e43.js +1180 -0
- package/dist/chunk-a7k3cdby.js +2266 -0
- package/dist/chunk-b5g5w1hh.js +1482 -0
- package/dist/chunk-bf8bq8pc.js +205 -0
- package/dist/chunk-bst5srwz.js +662 -0
- package/dist/{chunk-6jdq6549.js → chunk-djkz87qs.js} +18 -3
- package/dist/chunk-f6a9g4qa.js +902 -0
- package/dist/chunk-frw3va9v.js +69 -0
- package/dist/chunk-hsak03yh.js +311 -0
- package/dist/{chunk-8swsxabt.js → chunk-k2wcwm7g.js} +63 -3
- package/dist/chunk-mdj7x1vs.js +790 -0
- package/dist/chunk-mdqphqep.js +438 -0
- package/dist/chunk-p0c688mg.js +729 -0
- package/dist/chunk-pjjzff0p.js +2116 -0
- package/dist/chunk-q81mf99q.js +169 -0
- package/dist/chunk-q9dmga3k.js +11 -0
- package/dist/chunk-qhh0v93n.js +73 -0
- package/dist/chunk-qkm8e752.js +51 -0
- package/dist/chunk-saqpg5nd.js +118 -0
- package/dist/chunk-t5em30ak.js +379 -0
- package/dist/chunk-veja9rez.js +5764 -0
- package/dist/chunk-zsm2c35w.js +72 -0
- package/dist/chunk-zzerxbrm.js +107 -0
- package/dist/database/seed.js +18 -3
- package/dist/deploy/index.js +1 -1
- package/dist/examples.js +1 -1
- package/dist/fresh.js +1 -1
- package/dist/generate/index.js +19 -4
- package/dist/helpers/component-meta.js +10 -10
- package/dist/helpers/lib-entries.js +1 -1
- package/dist/index.js +18 -3
- package/dist/key-generate.js +1 -1
- package/dist/lint/fix.js +1 -1
- package/dist/make.js +1 -1
- package/dist/prepublish.js +1 -1
- package/dist/release.js +18 -3
- package/dist/test/feature.js +1 -1
- package/dist/test/index.js +1 -1
- package/dist/test/unit.js +1 -1
- package/dist/types.js +1 -1
- package/dist/upgrade/index.js +1 -1
- package/dist/upgrade.js +2 -2
- package/package.json +17 -17
- package/dist/chunk-8tjc3whz.js +0 -77989
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
import {
|
|
3
|
+
CredentialsProviderError
|
|
4
|
+
} from "./chunk-zzerxbrm.js";
|
|
5
|
+
import {
|
|
6
|
+
require_client
|
|
7
|
+
} from "./chunk-frw3va9v.js";
|
|
8
|
+
import {
|
|
9
|
+
__require,
|
|
10
|
+
__toESM
|
|
11
|
+
} from "./chunk-9v6qtbez.js";
|
|
12
|
+
|
|
13
|
+
// ../../../../node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js
|
|
14
|
+
var import_client = __toESM(require_client(), 1);
|
|
15
|
+
import { readFileSync } from "node:fs";
|
|
16
|
+
|
|
17
|
+
// ../../../../node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromWebToken.js
|
|
18
|
+
var fromWebToken = (init) => async (awsIdentityProperties) => {
|
|
19
|
+
init.logger?.debug("@aws-sdk/credential-provider-web-identity - fromWebToken");
|
|
20
|
+
const { roleArn, roleSessionName, webIdentityToken, providerId, policyArns, policy, durationSeconds } = init;
|
|
21
|
+
let { roleAssumerWithWebIdentity } = init;
|
|
22
|
+
if (!roleAssumerWithWebIdentity) {
|
|
23
|
+
const { getDefaultRoleAssumerWithWebIdentity } = await import("./chunk-9exgwfkw.js");
|
|
24
|
+
roleAssumerWithWebIdentity = getDefaultRoleAssumerWithWebIdentity({
|
|
25
|
+
...init.clientConfig,
|
|
26
|
+
credentialProviderLogger: init.logger,
|
|
27
|
+
parentClientConfig: {
|
|
28
|
+
...awsIdentityProperties?.callerClientConfig,
|
|
29
|
+
...init.parentClientConfig
|
|
30
|
+
}
|
|
31
|
+
}, init.clientPlugins);
|
|
32
|
+
}
|
|
33
|
+
return roleAssumerWithWebIdentity({
|
|
34
|
+
RoleArn: roleArn,
|
|
35
|
+
RoleSessionName: roleSessionName ?? `aws-sdk-js-session-${Date.now()}`,
|
|
36
|
+
WebIdentityToken: webIdentityToken,
|
|
37
|
+
ProviderId: providerId,
|
|
38
|
+
PolicyArns: policyArns,
|
|
39
|
+
Policy: policy,
|
|
40
|
+
DurationSeconds: durationSeconds
|
|
41
|
+
});
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
// ../../../../node_modules/@aws-sdk/credential-provider-web-identity/dist-es/fromTokenFile.js
|
|
45
|
+
var ENV_TOKEN_FILE = "AWS_WEB_IDENTITY_TOKEN_FILE";
|
|
46
|
+
var ENV_ROLE_ARN = "AWS_ROLE_ARN";
|
|
47
|
+
var ENV_ROLE_SESSION_NAME = "AWS_ROLE_SESSION_NAME";
|
|
48
|
+
var fromTokenFile = (init = {}) => async () => {
|
|
49
|
+
init.logger?.debug("@aws-sdk/credential-provider-web-identity - fromTokenFile");
|
|
50
|
+
const webIdentityTokenFile = init?.webIdentityTokenFile ?? process.env[ENV_TOKEN_FILE];
|
|
51
|
+
const roleArn = init?.roleArn ?? process.env[ENV_ROLE_ARN];
|
|
52
|
+
const roleSessionName = init?.roleSessionName ?? process.env[ENV_ROLE_SESSION_NAME];
|
|
53
|
+
if (!webIdentityTokenFile || !roleArn) {
|
|
54
|
+
throw new CredentialsProviderError("Web identity configuration not specified", {
|
|
55
|
+
logger: init.logger
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
const credentials = await fromWebToken({
|
|
59
|
+
...init,
|
|
60
|
+
webIdentityToken: readFileSync(webIdentityTokenFile, { encoding: "ascii" }),
|
|
61
|
+
roleArn,
|
|
62
|
+
roleSessionName
|
|
63
|
+
})();
|
|
64
|
+
if (webIdentityTokenFile === process.env[ENV_TOKEN_FILE]) {
|
|
65
|
+
import_client.setCredentialFeature(credentials, "CREDENTIALS_ENV_VARS_STS_WEB_ID_TOKEN", "h");
|
|
66
|
+
}
|
|
67
|
+
return credentials;
|
|
68
|
+
};
|
|
69
|
+
export {
|
|
70
|
+
fromWebToken,
|
|
71
|
+
fromTokenFile
|
|
72
|
+
};
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
// ../../../../node_modules/@smithy/property-provider/dist-es/ProviderError.js
|
|
2
|
+
class ProviderError extends Error {
|
|
3
|
+
constructor(message, options = true) {
|
|
4
|
+
let logger;
|
|
5
|
+
let tryNextLink = true;
|
|
6
|
+
if (typeof options === "boolean") {
|
|
7
|
+
logger = undefined;
|
|
8
|
+
tryNextLink = options;
|
|
9
|
+
} else if (options != null && typeof options === "object") {
|
|
10
|
+
logger = options.logger;
|
|
11
|
+
tryNextLink = options.tryNextLink ?? true;
|
|
12
|
+
}
|
|
13
|
+
super(message);
|
|
14
|
+
this.name = "ProviderError";
|
|
15
|
+
this.tryNextLink = tryNextLink;
|
|
16
|
+
Object.setPrototypeOf(this, ProviderError.prototype);
|
|
17
|
+
logger?.debug?.(`@smithy/property-provider ${tryNextLink ? "->" : "(!)"} ${message}`);
|
|
18
|
+
}
|
|
19
|
+
static from(error, options = true) {
|
|
20
|
+
return Object.assign(new this(error.message, options), error);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// ../../../../node_modules/@smithy/property-provider/dist-es/CredentialsProviderError.js
|
|
25
|
+
class CredentialsProviderError extends ProviderError {
|
|
26
|
+
constructor(message, options = true) {
|
|
27
|
+
super(message, options);
|
|
28
|
+
this.name = "CredentialsProviderError";
|
|
29
|
+
Object.setPrototypeOf(this, CredentialsProviderError.prototype);
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
// ../../../../node_modules/@smithy/property-provider/dist-es/TokenProviderError.js
|
|
33
|
+
class TokenProviderError extends ProviderError {
|
|
34
|
+
constructor(message, options = true) {
|
|
35
|
+
super(message, options);
|
|
36
|
+
this.name = "TokenProviderError";
|
|
37
|
+
Object.setPrototypeOf(this, TokenProviderError.prototype);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
// ../../../../node_modules/@smithy/property-provider/dist-es/chain.js
|
|
41
|
+
var chain = (...providers) => async () => {
|
|
42
|
+
if (providers.length === 0) {
|
|
43
|
+
throw new ProviderError("No providers in chain");
|
|
44
|
+
}
|
|
45
|
+
let lastProviderError;
|
|
46
|
+
for (const provider of providers) {
|
|
47
|
+
try {
|
|
48
|
+
const credentials = await provider();
|
|
49
|
+
return credentials;
|
|
50
|
+
} catch (err) {
|
|
51
|
+
lastProviderError = err;
|
|
52
|
+
if (err?.tryNextLink) {
|
|
53
|
+
continue;
|
|
54
|
+
}
|
|
55
|
+
throw err;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
throw lastProviderError;
|
|
59
|
+
};
|
|
60
|
+
// ../../../../node_modules/@smithy/property-provider/dist-es/fromStatic.js
|
|
61
|
+
var fromStatic = (staticValue) => () => Promise.resolve(staticValue);
|
|
62
|
+
// ../../../../node_modules/@smithy/property-provider/dist-es/memoize.js
|
|
63
|
+
var memoize = (provider, isExpired, requiresRefresh) => {
|
|
64
|
+
let resolved;
|
|
65
|
+
let pending;
|
|
66
|
+
let hasResult;
|
|
67
|
+
let isConstant = false;
|
|
68
|
+
const coalesceProvider = async () => {
|
|
69
|
+
if (!pending) {
|
|
70
|
+
pending = provider();
|
|
71
|
+
}
|
|
72
|
+
try {
|
|
73
|
+
resolved = await pending;
|
|
74
|
+
hasResult = true;
|
|
75
|
+
isConstant = false;
|
|
76
|
+
} finally {
|
|
77
|
+
pending = undefined;
|
|
78
|
+
}
|
|
79
|
+
return resolved;
|
|
80
|
+
};
|
|
81
|
+
if (isExpired === undefined) {
|
|
82
|
+
return async (options) => {
|
|
83
|
+
if (!hasResult || options?.forceRefresh) {
|
|
84
|
+
resolved = await coalesceProvider();
|
|
85
|
+
}
|
|
86
|
+
return resolved;
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
return async (options) => {
|
|
90
|
+
if (!hasResult || options?.forceRefresh) {
|
|
91
|
+
resolved = await coalesceProvider();
|
|
92
|
+
}
|
|
93
|
+
if (isConstant) {
|
|
94
|
+
return resolved;
|
|
95
|
+
}
|
|
96
|
+
if (requiresRefresh && !requiresRefresh(resolved)) {
|
|
97
|
+
isConstant = true;
|
|
98
|
+
return resolved;
|
|
99
|
+
}
|
|
100
|
+
if (isExpired(resolved)) {
|
|
101
|
+
await coalesceProvider();
|
|
102
|
+
return resolved;
|
|
103
|
+
}
|
|
104
|
+
return resolved;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
export { ProviderError, CredentialsProviderError, TokenProviderError, chain, fromStatic, memoize };
|
package/dist/database/seed.js
CHANGED
|
@@ -1,14 +1,29 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
seed
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import"../chunk-
|
|
4
|
+
} from "../chunk-1hqs8kt1.js";
|
|
5
|
+
import"../chunk-mdj7x1vs.js";
|
|
6
|
+
import"../chunk-p0c688mg.js";
|
|
7
|
+
import"../chunk-qkm8e752.js";
|
|
8
|
+
import"../chunk-a13x0e43.js";
|
|
9
|
+
import"../chunk-mdqphqep.js";
|
|
10
|
+
import"../chunk-qhh0v93n.js";
|
|
11
|
+
import"../chunk-pjjzff0p.js";
|
|
12
|
+
import"../chunk-7s5qcjkt.js";
|
|
13
|
+
import"../chunk-bf8bq8pc.js";
|
|
14
|
+
import"../chunk-b5g5w1hh.js";
|
|
15
|
+
import"../chunk-zzerxbrm.js";
|
|
16
|
+
import"../chunk-veja9rez.js";
|
|
17
|
+
import"../chunk-a7k3cdby.js";
|
|
18
|
+
import"../chunk-frw3va9v.js";
|
|
19
|
+
import"../chunk-saqpg5nd.js";
|
|
20
|
+
import"../chunk-2dvnt46s.js";
|
|
6
21
|
import"../chunk-w6fdq4hk.js";
|
|
7
22
|
import"../chunk-wkwtsvym.js";
|
|
8
23
|
import"../chunk-9v6qtbez.js";
|
|
9
24
|
|
|
10
25
|
// src/database/seed.ts
|
|
11
|
-
import process from "process";
|
|
26
|
+
import process from "node:process";
|
|
12
27
|
import { log } from "@stacksjs/cli";
|
|
13
28
|
log.info("Seeding database...");
|
|
14
29
|
await seed();
|
package/dist/deploy/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import"../chunk-wkwtsvym.js";
|
|
|
3
3
|
import"../chunk-9v6qtbez.js";
|
|
4
4
|
|
|
5
5
|
// src/deploy/index.ts
|
|
6
|
-
import process from "process";
|
|
6
|
+
import process from "node:process";
|
|
7
7
|
import { log, runCommand } from "@stacksjs/cli";
|
|
8
8
|
import { config } from "@stacksjs/config";
|
|
9
9
|
import { path as p } from "@stacksjs/path";
|
package/dist/examples.js
CHANGED
|
@@ -3,7 +3,7 @@ import"./chunk-wkwtsvym.js";
|
|
|
3
3
|
import"./chunk-9v6qtbez.js";
|
|
4
4
|
|
|
5
5
|
// src/examples.ts
|
|
6
|
-
import process from "process";
|
|
6
|
+
import process from "node:process";
|
|
7
7
|
import { NpmScript } from "@stacksjs/enums";
|
|
8
8
|
import { log } from "@stacksjs/logging";
|
|
9
9
|
import { hasComponents } from "@stacksjs/storage";
|
package/dist/fresh.js
CHANGED
|
@@ -3,7 +3,7 @@ import"./chunk-wkwtsvym.js";
|
|
|
3
3
|
import"./chunk-9v6qtbez.js";
|
|
4
4
|
|
|
5
5
|
// src/fresh.ts
|
|
6
|
-
import process from "process";
|
|
6
|
+
import process from "node:process";
|
|
7
7
|
import { runCommand } from "@stacksjs/cli";
|
|
8
8
|
import { handleError } from "@stacksjs/error-handling";
|
|
9
9
|
import { log } from "@stacksjs/logging";
|
package/dist/generate/index.js
CHANGED
|
@@ -1,15 +1,30 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
route
|
|
4
|
-
} from "../chunk-
|
|
4
|
+
} from "../chunk-8fdqje2t.js";
|
|
5
5
|
import {
|
|
6
6
|
generateVsCodeCustomData
|
|
7
7
|
} from "../helpers/vscode-custom-data.js";
|
|
8
8
|
import"../chunk-494jp8d5.js";
|
|
9
9
|
import {
|
|
10
10
|
generateModelFiles
|
|
11
|
-
} from "../chunk-
|
|
12
|
-
import"../chunk-
|
|
11
|
+
} from "../chunk-1hqs8kt1.js";
|
|
12
|
+
import"../chunk-mdj7x1vs.js";
|
|
13
|
+
import"../chunk-p0c688mg.js";
|
|
14
|
+
import"../chunk-qkm8e752.js";
|
|
15
|
+
import"../chunk-a13x0e43.js";
|
|
16
|
+
import"../chunk-mdqphqep.js";
|
|
17
|
+
import"../chunk-qhh0v93n.js";
|
|
18
|
+
import"../chunk-pjjzff0p.js";
|
|
19
|
+
import"../chunk-7s5qcjkt.js";
|
|
20
|
+
import"../chunk-bf8bq8pc.js";
|
|
21
|
+
import"../chunk-b5g5w1hh.js";
|
|
22
|
+
import"../chunk-zzerxbrm.js";
|
|
23
|
+
import"../chunk-veja9rez.js";
|
|
24
|
+
import"../chunk-a7k3cdby.js";
|
|
25
|
+
import"../chunk-frw3va9v.js";
|
|
26
|
+
import"../chunk-saqpg5nd.js";
|
|
27
|
+
import"../chunk-2dvnt46s.js";
|
|
13
28
|
import"../chunk-w6fdq4hk.js";
|
|
14
29
|
import"../chunk-wkwtsvym.js";
|
|
15
30
|
import"../chunk-ze46550n.js";
|
|
@@ -19,7 +34,7 @@ import {
|
|
|
19
34
|
import"../chunk-9v6qtbez.js";
|
|
20
35
|
|
|
21
36
|
// src/generate/index.ts
|
|
22
|
-
import process from "process";
|
|
37
|
+
import process from "node:process";
|
|
23
38
|
|
|
24
39
|
// ../api/src/generate-openapi.ts
|
|
25
40
|
import { path } from "@stacksjs/path";
|
|
@@ -1734,10 +1734,10 @@ var require_buffer_from = __commonJS((exports, module) => {
|
|
|
1734
1734
|
// ../../../../node_modules/source-map-support/source-map-support.js
|
|
1735
1735
|
var require_source_map_support = __commonJS((exports, module) => {
|
|
1736
1736
|
var SourceMapConsumer = require_source_map().SourceMapConsumer;
|
|
1737
|
-
var path = __require("path");
|
|
1737
|
+
var path = __require("node:path");
|
|
1738
1738
|
var fs;
|
|
1739
1739
|
try {
|
|
1740
|
-
fs = __require("fs");
|
|
1740
|
+
fs = __require("node:fs");
|
|
1741
1741
|
if (!fs.existsSync || !fs.readFileSync) {
|
|
1742
1742
|
fs = null;
|
|
1743
1743
|
}
|
|
@@ -7166,7 +7166,7 @@ ${lanes.join(`
|
|
|
7166
7166
|
function tryGetPerformance() {
|
|
7167
7167
|
if (isNodeLikeSystem()) {
|
|
7168
7168
|
try {
|
|
7169
|
-
const { performance: performance2 } = __require("perf_hooks");
|
|
7169
|
+
const { performance: performance2 } = __require("node:perf_hooks");
|
|
7170
7170
|
if (performance2) {
|
|
7171
7171
|
return {
|
|
7172
7172
|
shouldWriteNativeEvents: false,
|
|
@@ -7344,7 +7344,7 @@ ${lanes.join(`
|
|
|
7344
7344
|
Debug.assert(!tracing, "Tracing already started");
|
|
7345
7345
|
if (fs === undefined) {
|
|
7346
7346
|
try {
|
|
7347
|
-
fs = __require("fs");
|
|
7347
|
+
fs = __require("node:fs");
|
|
7348
7348
|
} catch (e) {
|
|
7349
7349
|
throw new Error(`tracing requires having fs
|
|
7350
7350
|
(original error: ${e.message || e})`);
|
|
@@ -10208,12 +10208,12 @@ ${lanes.join(`
|
|
|
10208
10208
|
const byteOrderMarkIndicator = "\uFEFF";
|
|
10209
10209
|
function getNodeSystem() {
|
|
10210
10210
|
const nativePattern = /^native |^\([^)]+\)$|^(?:internal[\\/]|[\w\s]+(?:\.js)?$)/;
|
|
10211
|
-
const _fs = __require("fs");
|
|
10212
|
-
const _path = __require("path");
|
|
10213
|
-
const _os = __require("os");
|
|
10211
|
+
const _fs = __require("node:fs");
|
|
10212
|
+
const _path = __require("node:path");
|
|
10213
|
+
const _os = __require("node:os");
|
|
10214
10214
|
let _crypto;
|
|
10215
10215
|
try {
|
|
10216
|
-
_crypto = __require("crypto");
|
|
10216
|
+
_crypto = __require("node:crypto");
|
|
10217
10217
|
} catch {
|
|
10218
10218
|
_crypto = undefined;
|
|
10219
10219
|
}
|
|
@@ -10356,7 +10356,7 @@ ${lanes.join(`
|
|
|
10356
10356
|
cb();
|
|
10357
10357
|
return false;
|
|
10358
10358
|
}
|
|
10359
|
-
const inspector = __require("inspector");
|
|
10359
|
+
const inspector = __require("node:inspector");
|
|
10360
10360
|
if (!inspector || !inspector.Session) {
|
|
10361
10361
|
cb();
|
|
10362
10362
|
return false;
|
|
@@ -186035,7 +186035,7 @@ var require_minimatch = __commonJS((exports, module) => {
|
|
|
186035
186035
|
minimatch.Minimatch = Minimatch;
|
|
186036
186036
|
var path = function() {
|
|
186037
186037
|
try {
|
|
186038
|
-
return __require("path");
|
|
186038
|
+
return __require("node:path");
|
|
186039
186039
|
} catch (e) {}
|
|
186040
186040
|
}() || {
|
|
186041
186041
|
sep: "/"
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import"../chunk-9v6qtbez.js";
|
|
9
9
|
|
|
10
10
|
// src/helpers/lib-entries.ts
|
|
11
|
-
import process from "process";
|
|
11
|
+
import process from "node:process";
|
|
12
12
|
import { log } from "@stacksjs/logging";
|
|
13
13
|
import { componentsPath, functionsPath, libraryEntryPath } from "@stacksjs/path";
|
|
14
14
|
import { writeTextFile } from "@stacksjs/storage";
|
package/dist/index.js
CHANGED
|
@@ -41,11 +41,26 @@ import {
|
|
|
41
41
|
generateWebTypes,
|
|
42
42
|
invoke
|
|
43
43
|
} from "./generate/index.js";
|
|
44
|
-
import"./chunk-
|
|
44
|
+
import"./chunk-8fdqje2t.js";
|
|
45
45
|
import"./helpers/vscode-custom-data.js";
|
|
46
46
|
import"./chunk-494jp8d5.js";
|
|
47
|
-
import"./chunk-
|
|
48
|
-
import"./chunk-
|
|
47
|
+
import"./chunk-1hqs8kt1.js";
|
|
48
|
+
import"./chunk-mdj7x1vs.js";
|
|
49
|
+
import"./chunk-p0c688mg.js";
|
|
50
|
+
import"./chunk-qkm8e752.js";
|
|
51
|
+
import"./chunk-a13x0e43.js";
|
|
52
|
+
import"./chunk-mdqphqep.js";
|
|
53
|
+
import"./chunk-qhh0v93n.js";
|
|
54
|
+
import"./chunk-pjjzff0p.js";
|
|
55
|
+
import"./chunk-7s5qcjkt.js";
|
|
56
|
+
import"./chunk-bf8bq8pc.js";
|
|
57
|
+
import"./chunk-b5g5w1hh.js";
|
|
58
|
+
import"./chunk-zzerxbrm.js";
|
|
59
|
+
import"./chunk-veja9rez.js";
|
|
60
|
+
import"./chunk-a7k3cdby.js";
|
|
61
|
+
import"./chunk-frw3va9v.js";
|
|
62
|
+
import"./chunk-saqpg5nd.js";
|
|
63
|
+
import"./chunk-2dvnt46s.js";
|
|
49
64
|
import"./chunk-w6fdq4hk.js";
|
|
50
65
|
import"./chunk-wkwtsvym.js";
|
|
51
66
|
import {
|
package/dist/key-generate.js
CHANGED
package/dist/lint/fix.js
CHANGED
package/dist/make.js
CHANGED
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
import"./chunk-9v6qtbez.js";
|
|
7
7
|
|
|
8
8
|
// src/make.ts
|
|
9
|
-
import process from "process";
|
|
9
|
+
import process from "node:process";
|
|
10
10
|
import { italic, runCommand } from "@stacksjs/cli";
|
|
11
11
|
import { localUrl } from "@stacksjs/config";
|
|
12
12
|
import { Action } from "@stacksjs/enums";
|
package/dist/prepublish.js
CHANGED
package/dist/release.js
CHANGED
|
@@ -5,11 +5,26 @@ import"./commit.js";
|
|
|
5
5
|
import"./make.js";
|
|
6
6
|
import"./add.js";
|
|
7
7
|
import"./generate/index.js";
|
|
8
|
-
import"./chunk-
|
|
8
|
+
import"./chunk-8fdqje2t.js";
|
|
9
9
|
import"./helpers/vscode-custom-data.js";
|
|
10
10
|
import"./chunk-494jp8d5.js";
|
|
11
|
-
import"./chunk-
|
|
12
|
-
import"./chunk-
|
|
11
|
+
import"./chunk-1hqs8kt1.js";
|
|
12
|
+
import"./chunk-mdj7x1vs.js";
|
|
13
|
+
import"./chunk-p0c688mg.js";
|
|
14
|
+
import"./chunk-qkm8e752.js";
|
|
15
|
+
import"./chunk-a13x0e43.js";
|
|
16
|
+
import"./chunk-mdqphqep.js";
|
|
17
|
+
import"./chunk-qhh0v93n.js";
|
|
18
|
+
import"./chunk-pjjzff0p.js";
|
|
19
|
+
import"./chunk-7s5qcjkt.js";
|
|
20
|
+
import"./chunk-bf8bq8pc.js";
|
|
21
|
+
import"./chunk-b5g5w1hh.js";
|
|
22
|
+
import"./chunk-zzerxbrm.js";
|
|
23
|
+
import"./chunk-veja9rez.js";
|
|
24
|
+
import"./chunk-a7k3cdby.js";
|
|
25
|
+
import"./chunk-frw3va9v.js";
|
|
26
|
+
import"./chunk-saqpg5nd.js";
|
|
27
|
+
import"./chunk-2dvnt46s.js";
|
|
13
28
|
import"./chunk-w6fdq4hk.js";
|
|
14
29
|
import"./chunk-wkwtsvym.js";
|
|
15
30
|
import"./dev/index.js";
|
package/dist/test/feature.js
CHANGED
package/dist/test/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/test/index.ts
|
|
3
|
-
import process from "process";
|
|
3
|
+
import process from "node:process";
|
|
4
4
|
import { log } from "@stacksjs/cli";
|
|
5
5
|
import { projectPath } from "@stacksjs/path";
|
|
6
6
|
var proc = Bun.spawn(["sh", "-c", "bun test ./tests/feature/** ./tests/unit/**"], {
|
package/dist/test/unit.js
CHANGED
package/dist/types.js
CHANGED
package/dist/upgrade/index.js
CHANGED
package/dist/upgrade.js
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
import"./chunk-9v6qtbez.js";
|
|
3
3
|
|
|
4
4
|
// src/upgrade.ts
|
|
5
|
-
import process from "process";
|
|
5
|
+
import process from "node:process";
|
|
6
6
|
import { intro, outro, runCommand } from "@stacksjs/cli";
|
|
7
7
|
import { NpmScript } from "@stacksjs/enums";
|
|
8
8
|
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.11";
|
|
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.11",
|
|
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.10",
|
|
46
|
+
"@stacksjs/cli": "0.70.10",
|
|
47
|
+
"@stacksjs/config": "0.70.10",
|
|
48
|
+
"@stacksjs/database": "0.70.10",
|
|
49
|
+
"@stacksjs/development": "0.70.10",
|
|
50
|
+
"@stacksjs/dns": "0.70.10",
|
|
51
|
+
"@stacksjs/enums": "0.70.10",
|
|
52
|
+
"@stacksjs/env": "0.70.10",
|
|
53
|
+
"@stacksjs/error-handling": "0.70.10",
|
|
54
|
+
"@stacksjs/logging": "0.70.10",
|
|
55
|
+
"@stacksjs/path": "0.70.10",
|
|
56
|
+
"@stacksjs/security": "0.70.10",
|
|
57
|
+
"@stacksjs/storage": "0.70.10",
|
|
58
|
+
"@stacksjs/strings": "0.70.10",
|
|
59
|
+
"@stacksjs/utils": "0.70.10",
|
|
60
|
+
"@stacksjs/validation": "0.70.10",
|
|
61
61
|
"markdown-it": "^14.1.0",
|
|
62
62
|
"vue-component-meta": "^2.2.8"
|
|
63
63
|
}
|