@cedarjs/cli 0.1.1 → 0.1.2-next.95
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/README.md +1 -1
- package/dist/commands/build.js +1 -1
- package/dist/commands/buildHandler.js +1 -1
- package/dist/commands/deploy/baremetal.js +1 -1
- package/dist/commands/deploy/flightcontrol.js +1 -1
- package/dist/commands/deploy/helpers/deployBuilder.js +1 -1
- package/dist/commands/deploy/render.js +1 -1
- package/dist/commands/deploy/serverless.js +1 -1
- package/dist/commands/deploy.js +1 -1
- package/dist/commands/destroy.js +1 -1
- package/dist/commands/dev.js +1 -1
- package/dist/commands/exec.js +1 -1
- package/dist/commands/experimental/util.js +1 -1
- package/dist/commands/experimental.js +1 -1
- package/dist/commands/generate/component/templates/component.tsx.template +2 -2
- package/dist/commands/generate/dataMigration/dataMigration.js +1 -1
- package/dist/commands/generate/dbAuth/dbAuth.js +1 -1
- package/dist/commands/generate/function/function.js +1 -1
- package/dist/commands/generate/function/functionHandler.js +1 -1
- package/dist/commands/generate/job/job.js +1 -1
- package/dist/commands/generate/model/model.js +1 -1
- package/dist/commands/generate/ogImage/ogImage.js +1 -1
- package/dist/commands/generate/scaffold/scaffold.js +1 -1
- package/dist/commands/generate/script/script.js +1 -1
- package/dist/commands/generate/sdl/sdl.js +1 -1
- package/dist/commands/generate/secret/secret.js +1 -1
- package/dist/commands/generate/service/service.js +1 -1
- package/dist/commands/generate/yargsCommandHelpers.js +1 -1
- package/dist/commands/generate.js +1 -1
- package/dist/commands/info.js +1 -1
- package/dist/commands/lint.js +1 -1
- package/dist/commands/record.js +1 -1
- package/dist/commands/serve.js +1 -1
- package/dist/commands/setup/auth/auth.js +1 -1
- package/dist/commands/setup/cache/cache.js +1 -1
- package/dist/commands/setup/deploy/deploy.js +1 -1
- package/dist/commands/setup/deploy/templates/render.js +2 -2
- package/dist/commands/setup/docker/templates/Dockerfile +3 -3
- package/dist/commands/setup/generator/generator.js +1 -1
- package/dist/commands/setup/graphql/graphql.js +1 -1
- package/dist/commands/setup/jobs/jobs.js +1 -1
- package/dist/commands/setup/middleware/middleware.js +1 -1
- package/dist/commands/setup/middleware/ogImage/__codemod_tests__/vitePlugin.js +4 -1
- package/dist/commands/setup/monitoring/monitoring.js +1 -1
- package/dist/commands/setup/package/package.js +1 -1
- package/dist/commands/setup/ui/libraries/tailwindcssHandler.js +8 -2
- package/dist/commands/setup/ui/ui.js +1 -1
- package/dist/commands/setup.js +1 -1
- package/dist/commands/test.js +1 -1
- package/dist/commands/type-check.js +1 -1
- package/dist/commands/upgrade.js +1 -1
- package/dist/lib/exit.js +1 -1
- package/dist/rwfw.js +2 -2
- package/package.json +18 -18
package/README.md
CHANGED
|
@@ -301,7 +301,7 @@ Files for entry-point commands typically aren't too complicated. Here's the cont
|
|
|
301
301
|
export const command = 'generate <type>'
|
|
302
302
|
export const aliases = ['g']
|
|
303
303
|
export const description = 'Save time by generating boilerplate code'
|
|
304
|
-
import terminalLink from '
|
|
304
|
+
import { terminalLink } from 'termi-link'
|
|
305
305
|
|
|
306
306
|
export const builder = (yargs) =>
|
|
307
307
|
yargs
|
package/dist/commands/build.js
CHANGED
|
@@ -3,7 +3,7 @@ import path from "node:path";
|
|
|
3
3
|
import execa from "execa";
|
|
4
4
|
import fs from "fs-extra";
|
|
5
5
|
import { Listr } from "listr2";
|
|
6
|
-
import terminalLink from "
|
|
6
|
+
import { terminalLink } from "termi-link";
|
|
7
7
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
8
8
|
import { buildApi, cleanApiBuild } from "@cedarjs/internal/dist/build/api";
|
|
9
9
|
import { generate } from "@cedarjs/internal/dist/generate/generate";
|
package/dist/commands/deploy.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const command = "deploy <target>";
|
|
2
2
|
const description = "Deploy your Redwood project";
|
|
3
|
-
import terminalLink from "
|
|
3
|
+
import { terminalLink } from "termi-link";
|
|
4
4
|
import * as deployBaremetal from "./deploy/baremetal.js";
|
|
5
5
|
import * as deployFlightcontrol from "./deploy/flightcontrol.js";
|
|
6
6
|
import * as deployNetlify from "./deploy/netlify.js";
|
package/dist/commands/destroy.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const command = "destroy <type>";
|
|
2
2
|
const aliases = ["d"];
|
|
3
3
|
const description = "Rollback changes made by the generate command";
|
|
4
|
-
import terminalLink from "
|
|
4
|
+
import { terminalLink } from "termi-link";
|
|
5
5
|
import * as destroyCell from "./destroy/cell/cell.js";
|
|
6
6
|
import * as destroyComponent from "./destroy/component/component.js";
|
|
7
7
|
import * as destroyDirective from "./destroy/directive/directive.js";
|
package/dist/commands/dev.js
CHANGED
package/dist/commands/exec.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import path from "path";
|
|
2
2
|
import chalk from "chalk";
|
|
3
3
|
import fs from "fs-extra";
|
|
4
|
-
import terminalLink from "
|
|
4
|
+
import { terminalLink } from "termi-link";
|
|
5
5
|
import { getPaths } from "../../lib/index.js";
|
|
6
6
|
import { isTypeScriptProject, serverFileExists } from "../../lib/project.js";
|
|
7
7
|
const link = (topicId, isTerminal = false) => {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import terminalLink from "
|
|
1
|
+
import { terminalLink } from "termi-link";
|
|
2
2
|
import detectRxVersion from "../middleware/detectProjectRxVersion.js";
|
|
3
3
|
import * as experimentalInngest from "./experimental/setupInngest.js";
|
|
4
4
|
import * as experimentalOpenTelemetry from "./experimental/setupOpentelemetry.js";
|
|
@@ -2,7 +2,7 @@ import path from "path";
|
|
|
2
2
|
import { paramCase } from "change-case";
|
|
3
3
|
import fs from "fs-extra";
|
|
4
4
|
import { Listr } from "listr2";
|
|
5
|
-
import terminalLink from "
|
|
5
|
+
import { terminalLink } from "termi-link";
|
|
6
6
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
7
7
|
import c from "../../../lib/colors.js";
|
|
8
8
|
import { getPaths, writeFilesTask } from "../../../lib/index.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import terminalLink from "
|
|
1
|
+
import { terminalLink } from "termi-link";
|
|
2
2
|
import { getYargsDefaults, createHandler } from "../yargsCommandHelpers.js";
|
|
3
3
|
const command = "dbAuth";
|
|
4
4
|
const description = "Generate Login, Signup and Forgot Password pages for dbAuth";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import path from "path";
|
|
2
2
|
import camelcase from "camelcase";
|
|
3
3
|
import { Listr } from "listr2";
|
|
4
|
-
import terminalLink from "
|
|
4
|
+
import { terminalLink } from "termi-link";
|
|
5
5
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
6
6
|
import { errorTelemetry } from "@cedarjs/telemetry";
|
|
7
7
|
import c from "../../../lib/colors.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import terminalLink from "
|
|
1
|
+
import { terminalLink } from "termi-link";
|
|
2
2
|
import { createHandler, getYargsDefaults } from "../yargsCommandHelpers.js";
|
|
3
3
|
const command = "scaffold <model>";
|
|
4
4
|
const description = "Generate Pages, SDL, and Services files based on a given DB schema Model. Also accepts <path/model>";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import crypto from "node:crypto";
|
|
2
|
-
import terminalLink from "
|
|
2
|
+
import { terminalLink } from "termi-link";
|
|
3
3
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
4
4
|
const DEFAULT_LENGTH = 32;
|
|
5
5
|
const generateSecret = (length = DEFAULT_LENGTH) => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import execa from "execa";
|
|
2
|
-
import terminalLink from "
|
|
2
|
+
import { terminalLink } from "termi-link";
|
|
3
3
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
4
4
|
import * as generateCell from "./generate/cell/cell.js";
|
|
5
5
|
import * as generateComponent from "./generate/component/component.js";
|
package/dist/commands/info.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import fs from "node:fs";
|
|
2
2
|
import envinfo from "envinfo";
|
|
3
|
-
import terminalLink from "
|
|
3
|
+
import { terminalLink } from "termi-link";
|
|
4
4
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
5
5
|
import { getPaths } from "@cedarjs/project-config";
|
|
6
6
|
const command = "info";
|
package/dist/commands/lint.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import execa from "execa";
|
|
2
2
|
import fs from "fs-extra";
|
|
3
|
-
import terminalLink from "
|
|
3
|
+
import { terminalLink } from "termi-link";
|
|
4
4
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
5
5
|
import { getPaths } from "../lib/index.js";
|
|
6
6
|
const command = "lint [path..]";
|
package/dist/commands/record.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const command = "record <command>";
|
|
2
2
|
const description = "Setup RedwoodRecord for your project. Caches a JSON version of your data model and adds api/src/models/index.js with some config.";
|
|
3
|
-
import terminalLink from "
|
|
3
|
+
import { terminalLink } from "termi-link";
|
|
4
4
|
const builder = (yargs) => yargs.command({ command, description, handler }).demandCommand().epilogue(
|
|
5
5
|
`Also see the ${terminalLink(
|
|
6
6
|
"RedwoodRecord Docs",
|
package/dist/commands/serve.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import path from "path";
|
|
2
2
|
import fs from "fs-extra";
|
|
3
|
-
import terminalLink from "
|
|
3
|
+
import { terminalLink } from "termi-link";
|
|
4
4
|
import * as apiServerCLIConfig from "@cedarjs/api-server/dist/apiCLIConfig.js";
|
|
5
5
|
import * as bothServerCLIConfig from "@cedarjs/api-server/dist/bothCLIConfig.js";
|
|
6
6
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
const command = "deploy <target>";
|
|
2
2
|
const description = "Setup deployment to various targets";
|
|
3
|
-
import terminalLink from "
|
|
3
|
+
import { terminalLink } from "termi-link";
|
|
4
4
|
import * as setupDeployBaremetal from "./providers/baremetal.js";
|
|
5
5
|
import * as setupDeployCoherence from "./providers/coherence.js";
|
|
6
6
|
import * as setupDeployFlightcontrol from "./providers/flightcontrol.js";
|
|
@@ -10,7 +10,7 @@ services:
|
|
|
10
10
|
- name: ${PROJECT_NAME}-web
|
|
11
11
|
type: web
|
|
12
12
|
env: static
|
|
13
|
-
buildCommand: corepack
|
|
13
|
+
buildCommand: npm install --global corepack && yarn install && yarn rw deploy render web
|
|
14
14
|
staticPublishPath: ./web/dist
|
|
15
15
|
|
|
16
16
|
envVars:
|
|
@@ -35,7 +35,7 @@ services:
|
|
|
35
35
|
plan: free
|
|
36
36
|
env: node
|
|
37
37
|
region: oregon
|
|
38
|
-
buildCommand: corepack
|
|
38
|
+
buildCommand: npm install --global corepack && yarn install && yarn rw build api
|
|
39
39
|
startCommand: yarn rw deploy render api
|
|
40
40
|
|
|
41
41
|
envVars:
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# ----
|
|
3
3
|
FROM node:20-bookworm-slim as base
|
|
4
4
|
|
|
5
|
-
RUN corepack
|
|
5
|
+
RUN npm install --global corepack
|
|
6
6
|
|
|
7
7
|
# We tried to make the Dockerfile as lean as possible. In some cases, that means we excluded a dependency your project needs.
|
|
8
8
|
# By far the most common is Python. If you're running into build errors because `python3` isn't available,
|
|
@@ -61,7 +61,7 @@ RUN yarn rw build web --no-prerender
|
|
|
61
61
|
# ---------
|
|
62
62
|
FROM node:20-bookworm-slim as api_serve
|
|
63
63
|
|
|
64
|
-
RUN corepack
|
|
64
|
+
RUN npm install --global corepack
|
|
65
65
|
|
|
66
66
|
RUN apt-get update && apt-get install -y \
|
|
67
67
|
openssl \
|
|
@@ -105,7 +105,7 @@ CMD [ "node_modules/.bin/rw-server", "api" ]
|
|
|
105
105
|
# ---------
|
|
106
106
|
FROM node:20-bookworm-slim as web_serve
|
|
107
107
|
|
|
108
|
-
RUN corepack
|
|
108
|
+
RUN npm install --global corepack
|
|
109
109
|
|
|
110
110
|
USER node
|
|
111
111
|
WORKDIR /home/node/app
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import path from "path";
|
|
2
2
|
import fs from "fs-extra";
|
|
3
|
-
import terminalLink from "
|
|
3
|
+
import { terminalLink } from "termi-link";
|
|
4
4
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
5
5
|
const command = "generator <name>";
|
|
6
6
|
const description = "Copies generator templates locally for customization";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import terminalLink from "
|
|
1
|
+
import { terminalLink } from "termi-link";
|
|
2
2
|
import * as fragmentsCommand from "./features/fragments/fragments.js";
|
|
3
3
|
import * as trustedDocumentsCommand from "./features/trustedDocuments/trustedDocuments.js";
|
|
4
4
|
const command = "graphql <feature>";
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import { describe, it } from "vitest";
|
|
1
|
+
import { beforeAll, describe, it } from "vitest";
|
|
2
2
|
describe("Vite plugin codemod", () => {
|
|
3
|
+
beforeAll(async () => {
|
|
4
|
+
await new Promise((res) => setImmediate(res));
|
|
5
|
+
});
|
|
3
6
|
it("Handles the default vite config case", async () => {
|
|
4
7
|
await matchTransformSnapshot("codemodVitePlugin", "defaultViteConfig");
|
|
5
8
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import terminalLink from "
|
|
1
|
+
import { terminalLink } from "termi-link";
|
|
2
2
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
3
3
|
const command = "package <npm-package>";
|
|
4
4
|
const description = "Run a bin from an NPM package with version compatibility checks";
|
|
@@ -3,7 +3,7 @@ import path from "node:path";
|
|
|
3
3
|
import { ListrEnquirerPromptAdapter } from "@listr2/prompt-adapter-enquirer";
|
|
4
4
|
import execa from "execa";
|
|
5
5
|
import { Listr } from "listr2";
|
|
6
|
-
import terminalLink from "
|
|
6
|
+
import { terminalLink } from "termi-link";
|
|
7
7
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
8
8
|
import { errorTelemetry } from "@cedarjs/telemetry";
|
|
9
9
|
import c from "../../../../lib/colors.js";
|
|
@@ -128,7 +128,13 @@ const handler = async ({ force, install }) => {
|
|
|
128
128
|
"yarn",
|
|
129
129
|
["workspace", "web", "add", "-D", ...webWorkspacePackages],
|
|
130
130
|
{
|
|
131
|
-
cwd: rwPaths.base
|
|
131
|
+
cwd: rwPaths.base,
|
|
132
|
+
env: {
|
|
133
|
+
// For some reason yarn started installing deprecated
|
|
134
|
+
// typescript types when installing tailwind. This
|
|
135
|
+
// prevents it from happening.
|
|
136
|
+
YARN_TS_ENABLE_AUTO_TYPES: "false"
|
|
137
|
+
}
|
|
132
138
|
}
|
|
133
139
|
);
|
|
134
140
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import terminalLink from "
|
|
1
|
+
import { terminalLink } from "termi-link";
|
|
2
2
|
import * as libraryChakraUi from "./libraries/chakra-ui.js";
|
|
3
3
|
import * as libraryMantine from "./libraries/mantine.js";
|
|
4
4
|
import * as libraryTailwindCss from "./libraries/tailwindcss.js";
|
package/dist/commands/setup.js
CHANGED
package/dist/commands/test.js
CHANGED
package/dist/commands/upgrade.js
CHANGED
|
@@ -3,7 +3,7 @@ import execa from "execa";
|
|
|
3
3
|
import fs from "fs-extra";
|
|
4
4
|
import latestVersion from "latest-version";
|
|
5
5
|
import { Listr } from "listr2";
|
|
6
|
-
import terminalLink from "
|
|
6
|
+
import { terminalLink } from "termi-link";
|
|
7
7
|
import { recordTelemetryAttributes } from "@cedarjs/cli-helpers";
|
|
8
8
|
import { getConfig } from "@cedarjs/project-config";
|
|
9
9
|
import c from "../lib/colors.js";
|
package/dist/lib/exit.js
CHANGED
package/dist/rwfw.js
CHANGED
|
@@ -3,7 +3,7 @@ import path from "path";
|
|
|
3
3
|
import Configstore from "configstore";
|
|
4
4
|
import execa from "execa";
|
|
5
5
|
import fs from "fs-extra";
|
|
6
|
-
import
|
|
6
|
+
import { terminalLink } from "termi-link";
|
|
7
7
|
import { getConfigPath } from "@cedarjs/project-config";
|
|
8
8
|
const config = new Configstore("@cedarjs/cli");
|
|
9
9
|
const RWFW_PATH = process.env.RWFW_PATH || process.env.RW_PATH || config.get("RWFW_PATH");
|
|
@@ -26,7 +26,7 @@ const projectPath = path.dirname(
|
|
|
26
26
|
);
|
|
27
27
|
console.log(
|
|
28
28
|
"Redwood Framework Tools Path:",
|
|
29
|
-
|
|
29
|
+
terminalLink(absRwFwPath, absRwFwPath)
|
|
30
30
|
);
|
|
31
31
|
let command = process.argv.slice(2);
|
|
32
32
|
const helpCommands = ["help", "--help"];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2-next.95+a711c9cda",
|
|
4
4
|
"description": "The Redwood Command Line",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -28,16 +28,16 @@
|
|
|
28
28
|
"test:watch": "vitest watch"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@babel/runtime-corejs3": "7.27.
|
|
32
|
-
"@cedarjs/api-server": "0.1.
|
|
33
|
-
"@cedarjs/cli-helpers": "0.1.
|
|
34
|
-
"@cedarjs/fastify-web": "0.1.
|
|
35
|
-
"@cedarjs/internal": "0.1.
|
|
36
|
-
"@cedarjs/prerender": "0.1.
|
|
37
|
-
"@cedarjs/project-config": "0.1.
|
|
38
|
-
"@cedarjs/structure": "0.1.
|
|
39
|
-
"@cedarjs/telemetry": "0.1.
|
|
40
|
-
"@cedarjs/web-server": "0.1.
|
|
31
|
+
"@babel/runtime-corejs3": "7.27.6",
|
|
32
|
+
"@cedarjs/api-server": "0.1.2-next.95+a711c9cda",
|
|
33
|
+
"@cedarjs/cli-helpers": "0.1.2-next.95+a711c9cda",
|
|
34
|
+
"@cedarjs/fastify-web": "0.1.2-next.95+a711c9cda",
|
|
35
|
+
"@cedarjs/internal": "0.1.2-next.95+a711c9cda",
|
|
36
|
+
"@cedarjs/prerender": "0.1.2-next.95+a711c9cda",
|
|
37
|
+
"@cedarjs/project-config": "0.1.2-next.95+a711c9cda",
|
|
38
|
+
"@cedarjs/structure": "0.1.2-next.95+a711c9cda",
|
|
39
|
+
"@cedarjs/telemetry": "0.1.2-next.95+a711c9cda",
|
|
40
|
+
"@cedarjs/web-server": "0.1.2-next.95+a711c9cda",
|
|
41
41
|
"@listr2/prompt-adapter-enquirer": "2.0.12",
|
|
42
42
|
"@opentelemetry/api": "1.8.0",
|
|
43
43
|
"@opentelemetry/core": "1.22.0",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
"enquirer": "2.4.1",
|
|
62
62
|
"envinfo": "7.14.0",
|
|
63
63
|
"execa": "5.1.1",
|
|
64
|
-
"fast-glob": "3.3.
|
|
64
|
+
"fast-glob": "3.3.3",
|
|
65
65
|
"fs-extra": "11.2.0",
|
|
66
66
|
"humanize-string": "2.1.0",
|
|
67
67
|
"jscodeshift": "17.0.0",
|
|
@@ -70,16 +70,16 @@
|
|
|
70
70
|
"lodash": "4.17.21",
|
|
71
71
|
"pascalcase": "1.0.0",
|
|
72
72
|
"pluralize": "8.0.0",
|
|
73
|
-
"portfinder": "1.0.
|
|
73
|
+
"portfinder": "1.0.37",
|
|
74
74
|
"prettier": "3.5.3",
|
|
75
75
|
"prisma": "5.20.0",
|
|
76
76
|
"prompts": "2.4.2",
|
|
77
77
|
"rimraf": "6.0.1",
|
|
78
78
|
"semver": "7.6.3",
|
|
79
|
-
"smol-toml": "1.3.
|
|
79
|
+
"smol-toml": "1.3.4",
|
|
80
80
|
"string-env-interpolation": "1.0.1",
|
|
81
81
|
"systeminformation": "5.23.8",
|
|
82
|
-
"
|
|
82
|
+
"termi-link": "1.1.0",
|
|
83
83
|
"title-case": "3.0.3",
|
|
84
84
|
"unionfs": "4.5.4",
|
|
85
85
|
"uuid": "10.0.0",
|
|
@@ -91,12 +91,12 @@
|
|
|
91
91
|
"@types/archiver": "^6",
|
|
92
92
|
"memfs": "4.17.2",
|
|
93
93
|
"node-ssh": "13.2.1",
|
|
94
|
-
"tsx": "4.19.
|
|
94
|
+
"tsx": "4.19.4",
|
|
95
95
|
"typescript": "5.6.2",
|
|
96
|
-
"vitest": "2.
|
|
96
|
+
"vitest": "3.2.4"
|
|
97
97
|
},
|
|
98
98
|
"publishConfig": {
|
|
99
99
|
"access": "public"
|
|
100
100
|
},
|
|
101
|
-
"gitHead": "
|
|
101
|
+
"gitHead": "a711c9cda09da9444fb0f6ff5d9dae804d6ba72b"
|
|
102
102
|
}
|