mirror of
https://github.com/jakejarvis/stanza.git
synced 2026-07-16 18:05:58 -04:00
chore: update deps
This commit is contained in:
@@ -29,18 +29,18 @@
|
||||
".": "./src/index.ts"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"bin": {
|
||||
"stanza": "./dist/bin.mjs"
|
||||
},
|
||||
"main": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.mts",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.mts",
|
||||
"default": "./dist/index.mjs"
|
||||
}
|
||||
},
|
||||
"main": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.mts"
|
||||
"access": "public"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "vp pack"
|
||||
|
||||
@@ -524,13 +524,6 @@ describe("third-party registries", () => {
|
||||
await new Promise<void>((resolve) => server.close(() => resolve()));
|
||||
});
|
||||
|
||||
function writeStanza(projectRoot: string, registries: Record<string, unknown>) {
|
||||
const file = path.join(projectRoot, "stanza.json");
|
||||
const manifest = JSON.parse(fs.readFileSync(file, "utf8"));
|
||||
manifest.registries = registries;
|
||||
fs.writeFileSync(file, JSON.stringify(manifest, null, 2) + "\n");
|
||||
}
|
||||
|
||||
it("installs a module from a third-party namespace and records its origin", async () => {
|
||||
await cmdInit(args({ name: "app", yes: true, framework: "next" }));
|
||||
process.chdir(path.join(tmp, "app"));
|
||||
@@ -635,3 +628,10 @@ describe("third-party registries", () => {
|
||||
expect(manifest.modules.testing).toBeUndefined();
|
||||
});
|
||||
});
|
||||
|
||||
function writeStanza(projectRoot: string, registries: Record<string, unknown>) {
|
||||
const file = path.join(projectRoot, "stanza.json");
|
||||
const manifest = JSON.parse(fs.readFileSync(file, "utf8"));
|
||||
manifest.registries = registries;
|
||||
fs.writeFileSync(file, JSON.stringify(manifest, null, 2) + "\n");
|
||||
}
|
||||
|
||||
@@ -23,25 +23,25 @@
|
||||
"@tanstack/react-devtools": "^0.10.5",
|
||||
"@tanstack/react-hotkeys": "^0.10.0",
|
||||
"@tanstack/react-pacer": "^0.22.1",
|
||||
"@tanstack/react-router": "^1.170.8",
|
||||
"@tanstack/react-router": "^1.170.9",
|
||||
"@tanstack/react-router-devtools": "^1.167.0",
|
||||
"@tanstack/react-start": "^1.168.14",
|
||||
"@tanstack/react-start": "^1.168.16",
|
||||
"@vercel/analytics": "^2.0.1",
|
||||
"@vercel/functions": "^3.6.1",
|
||||
"class-variance-authority": "^0.7.1",
|
||||
"clsx": "^2.1.1",
|
||||
"fumadocs-core": "^16.9.1",
|
||||
"fumadocs-mdx": "^15.0.9",
|
||||
"fumadocs-ui": "npm:@fumadocs/base-ui@^16.9.1",
|
||||
"fumadocs-core": "^16.9.3",
|
||||
"fumadocs-mdx": "^15.0.10",
|
||||
"fumadocs-ui": "npm:@fumadocs/base-ui@^16.9.3",
|
||||
"lru-cache": "^11.5.1",
|
||||
"motion": "^12.40.0",
|
||||
"nitro": "^3.0.260522-beta",
|
||||
"posthog-node": "^5.35.5",
|
||||
"posthog-node": "^5.35.6",
|
||||
"react": "^19.2.6",
|
||||
"react-dom": "^19.2.6",
|
||||
"react-resizable-panels": "^4.11.2",
|
||||
"recharts": "^3.8.1",
|
||||
"shadcn": "^4.8.2",
|
||||
"shadcn": "^4.8.3",
|
||||
"shiki": "^4.1.0",
|
||||
"sonner": "^2.0.7",
|
||||
"tailwind-merge": "^3.6.0",
|
||||
|
||||
@@ -23,10 +23,10 @@
|
||||
],
|
||||
"type": "module",
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"bin": {
|
||||
"create-stanza": "./dist/bin.mjs"
|
||||
}
|
||||
},
|
||||
"access": "public"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "vp pack"
|
||||
|
||||
Generated
+531
-473
File diff suppressed because it is too large
Load Diff
+3
-4
@@ -3,9 +3,9 @@ packages:
|
||||
- packages/*
|
||||
- registry/modules/*
|
||||
catalog:
|
||||
vite: npm:@voidzero-dev/vite-plus-core@^0.1.22
|
||||
vite-plus: ^0.1.22
|
||||
vitest: npm:@voidzero-dev/vite-plus-test@^0.1.22
|
||||
vite: npm:@voidzero-dev/vite-plus-core@^0.1.23
|
||||
vite-plus: ^0.1.23
|
||||
vitest: npm:@voidzero-dev/vite-plus-test@^0.1.23
|
||||
ignoredBuiltDependencies:
|
||||
- sharp
|
||||
ignoredOptionalDependencies: []
|
||||
@@ -15,7 +15,6 @@ onlyBuiltDependencies:
|
||||
- msw
|
||||
- protobufjs
|
||||
overrides:
|
||||
es-toolkit: 1.46.1
|
||||
vite: "catalog:"
|
||||
vitest: "catalog:"
|
||||
peerDependencyRules:
|
||||
|
||||
Reference in New Issue
Block a user