diff --git a/.changeset/add-plugin-content-schema-extension.md b/.changeset/add-plugin-content-schema-extension.md deleted file mode 100644 index 36573fd7..00000000 --- a/.changeset/add-plugin-content-schema-extension.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@stackwright/types": minor ---- - -Add `contentItemSchemas` and `knownContentTypeKeys` to `PrebuildPlugin` interface. -Add `buildExtendedPageContentSchema()` function for merging OSS and plugin content schemas. -Add `ValidatePageContentOptions` to `validatePageContent()` for plugin-aware validation. diff --git a/.changeset/add-pro-content-normalization.md b/.changeset/add-pro-content-normalization.md deleted file mode 100644 index 8e63d51e..00000000 --- a/.changeset/add-pro-content-normalization.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@stackwright/build-scripts": minor ---- - -Add content format normalization (mapping-key YAML format → type-field format) to prebuild pipeline. -Plugin `contentItemSchemas` and `knownContentTypeKeys` are now applied during page validation. diff --git a/.changeset/dependabot-batch-updates.md b/.changeset/dependabot-batch-updates.md deleted file mode 100644 index d5b22d58..00000000 --- a/.changeset/dependabot-batch-updates.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -"@stackwright/core": patch -"@stackwright/icons": patch -"@stackwright/maplibre": patch -"@stackwright/nextjs": patch -"@stackwright/ui-shadcn": patch ---- - -chore: consolidate dependabot dependency updates - -- `lucide-react`: `^0.525.0` → `^1.8.0` (icons, ui-shadcn) — includes icon rename fixes for v1 API (`CheckCircle` → `CircleCheck`, `Code2`/`Layout` backward-compat aliases) -- `@swc/core`: `^1.15.18` → `^1.15.26` (core, nextjs) -- `jsdom`: `^28.1.0` → `^29.0.2` (maplibre) -- `react-dom`: `19.2.4` → `19.2.5` (pnpm.overrides) -- `prettier`: `^3.8.1` → `^3.8.3` (devDependencies) diff --git a/.changeset/feat-188-page-add-content-flag.md b/.changeset/feat-188-page-add-content-flag.md deleted file mode 100644 index eab52a5e..00000000 --- a/.changeset/feat-188-page-add-content-flag.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@stackwright/cli": patch ---- - -feat(cli): add --content flag to `page add` for inline YAML (#188) - -Agents can now create a page with full content in a single command instead of a two-step add + write sequence. Content is validated before writing; invalid YAML is rejected with field-level errors. diff --git a/.changeset/feat-243-security-headers.md b/.changeset/feat-243-security-headers.md deleted file mode 100644 index 76a47d9a..00000000 --- a/.changeset/feat-243-security-headers.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stackwright/nextjs": minor ---- - -Add security headers (CSP, HSTS, COOP/CORP/COEP) to Next.js integration with customizable configuration diff --git a/.changeset/fix-352-install-flag-actually-installs.md b/.changeset/fix-352-install-flag-actually-installs.md deleted file mode 100644 index 2cf34eda..00000000 --- a/.changeset/fix-352-install-flag-actually-installs.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stackwright/cli": patch ---- - -fix(cli): --install flag now runs pnpm install before postInstall hooks diff --git a/.changeset/fix-plugin-config-schema-242.md b/.changeset/fix-plugin-config-schema-242.md deleted file mode 100644 index 88db2c67..00000000 --- a/.changeset/fix-plugin-config-schema-242.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@stackwright/types": patch -"@stackwright/build-scripts": patch ---- - -Add configSchema field to PrebuildPlugin for plugin config validation diff --git a/.changeset/fix-plugin-this-binding.md b/.changeset/fix-plugin-this-binding.md deleted file mode 100644 index dbb13b74..00000000 --- a/.changeset/fix-plugin-this-binding.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"@stackwright/build-scripts": patch ---- - -fix(executePluginHook): preserve `this` binding when calling plugin lifecycle hooks - -`executePluginHook` was extracting hook methods as unbound references -(`const hookFn = plugin[hook]`) and calling them as plain functions -(`hookFn(context)`). In strict-mode ES classes, this strips `this`, -causing any plugin that calls a private/instance method from `beforeBuild` -or `afterBuild` to throw `Cannot read properties of undefined`. - -Fix: use `hookFn.call(plugin, context)` so the plugin instance is always -the receiver. diff --git a/.changeset/fix-preinstall-double-run.md b/.changeset/fix-preinstall-double-run.md deleted file mode 100644 index df264ead..00000000 --- a/.changeset/fix-preinstall-double-run.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -"@stackwright/cli": patch ---- - -fix(cli): remove duplicate preInstall hook call from processTemplate - -`processTemplate()` was calling `runScaffoldHooks('preInstall', ...)` internally, -then `scaffold.ts` called it again after `processTemplate` returned — running every -preInstall handler twice. Worse, the second call passed the original empty `{}` object -(not the built package.json), so hooks registered via `scaffold.ts` could never affect -the written file. - -Fix: lifecycle orchestration now lives entirely in `scaffold.ts`. `buildPackageJson` is -exported so `scaffold.ts` can build the default package.json before running preInstall -hooks, then passes the already-hooks-modified object into `processTemplate` for writing. -`processTemplate` no longer calls hooks. - -Fixes #351. diff --git a/.changeset/grumpy-paws-create.md b/.changeset/grumpy-paws-create.md deleted file mode 100644 index 3394347b..00000000 --- a/.changeset/grumpy-paws-create.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stackwright/core": patch ---- - -fix(core): prevent duplicate TopAppBar rendering that caused a double dark-mode toggle icon diff --git a/.changeset/pre.json b/.changeset/pre.json deleted file mode 100644 index a4c24310..00000000 --- a/.changeset/pre.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "mode": "pre", - "tag": "alpha", - "initialVersions": { - "stackwright-docs": "0.1.2", - "@stackwright/build-scripts": "0.5.0", - "@stackwright/cli": "0.8.0", - "@stackwright/collections": "0.1.0", - "@stackwright/core": "0.8.0", - "@stackwright/e2e": "0.3.0", - "@stackwright/hooks-registry": "0.1.0", - "@stackwright/icons": "0.5.0", - "launch-stackwright": "0.2.0", - "@stackwright/maplibre": "2.0.0", - "@stackwright/mcp": "0.4.0", - "@stackwright/nextjs": "0.4.0", - "@stackwright/otters": "0.2.0", - "@stackwright/sbom-generator": "0.2.0", - "@stackwright/scaffold-core": "0.3.0", - "@stackwright/themes": "0.5.2", - "@stackwright/types": "1.2.0", - "@stackwright/ui-shadcn": "0.1.1" - }, - "changesets": [ - "add-plugin-content-schema-extension", - "add-pro-content-normalization", - "dependabot-batch-updates", - "feat-188-page-add-content-flag", - "feat-243-security-headers", - "fix-352-install-flag-actually-installs", - "fix-plugin-config-schema-242", - "fix-plugin-this-binding", - "fix-prebuild-mkdir-nested-slugs", - "fix-preinstall-double-run", - "grumpy-paws-create" - ] -} diff --git a/examples/stackwright-docs/CHANGELOG.md b/examples/stackwright-docs/CHANGELOG.md index 0bead377..d862bff6 100644 --- a/examples/stackwright-docs/CHANGELOG.md +++ b/examples/stackwright-docs/CHANGELOG.md @@ -1,17 +1,5 @@ # stackwright-docs -## 0.1.3-alpha.0 - -### Patch Changes - -- Updated dependencies [c036f5b] -- Updated dependencies [6326d49] -- Updated dependencies [5ad5035] - - @stackwright/core@0.8.1-alpha.0 - - @stackwright/icons@0.5.1-alpha.0 - - @stackwright/nextjs@0.5.0-alpha.0 - - @stackwright/ui-shadcn@0.1.2-alpha.0 - ## 0.1.2 ### Patch Changes diff --git a/examples/stackwright-docs/package.json b/examples/stackwright-docs/package.json index d5874d71..1ac7886f 100644 --- a/examples/stackwright-docs/package.json +++ b/examples/stackwright-docs/package.json @@ -1,6 +1,6 @@ { "name": "stackwright-docs", - "version": "0.1.3-alpha.0", + "version": "0.1.2", "private": true, "scripts": { "prebuild": "stackwright-prebuild", diff --git a/package.json b/package.json index bbe31490..6fa262b7 100644 --- a/package.json +++ b/package.json @@ -91,8 +91,7 @@ "hono": ">=4.12.14", "@hono/node-server": ">=1.19.10", "basic-ftp": ">=5.3.0", - "express-rate-limit": ">=8.2.2", - "uuid": ">=14.0.0" + "express-rate-limit": ">=8.2.2" }, "onlyBuiltDependencies": [ "@swc/core", @@ -115,4 +114,4 @@ "@commitlint/config-conventional" ] } -} +} \ No newline at end of file diff --git a/packages/build-scripts/CHANGELOG.md b/packages/build-scripts/CHANGELOG.md index 529c487e..bc21a353 100644 --- a/packages/build-scripts/CHANGELOG.md +++ b/packages/build-scripts/CHANGELOG.md @@ -1,36 +1,5 @@ # @stackwright/build-scripts -## 0.6.0-alpha.1 - -### Patch Changes - -- bb4ecb7: fix(build-scripts): create parent directory before writing nested page slug output files - -## 0.6.0-alpha.0 - -### Minor Changes - -- bdf7fe0: Add content format normalization (mapping-key YAML format → type-field format) to prebuild pipeline. - Plugin `contentItemSchemas` and `knownContentTypeKeys` are now applied during page validation. - -### Patch Changes - -- 68bdad5: Add configSchema field to PrebuildPlugin for plugin config validation -- 83ba70c: fix(executePluginHook): preserve `this` binding when calling plugin lifecycle hooks - - `executePluginHook` was extracting hook methods as unbound references - (`const hookFn = plugin[hook]`) and calling them as plain functions - (`hookFn(context)`). In strict-mode ES classes, this strips `this`, - causing any plugin that calls a private/instance method from `beforeBuild` - or `afterBuild` to throw `Cannot read properties of undefined`. - - Fix: use `hookFn.call(plugin, context)` so the plugin instance is always - the receiver. - -- Updated dependencies [bdf7fe0] -- Updated dependencies [68bdad5] - - @stackwright/types@1.3.0-alpha.0 - ## 0.5.0 ### Minor Changes diff --git a/packages/build-scripts/package.json b/packages/build-scripts/package.json index 3b27ca5a..5e99ce67 100644 --- a/packages/build-scripts/package.json +++ b/packages/build-scripts/package.json @@ -1,6 +1,6 @@ { "name": "@stackwright/build-scripts", - "version": "0.6.0-alpha.1", + "version": "0.5.0", "description": "Build-time scripts for Stackwright projects (prebuild image processing, YAML compilation)", "license": "MIT", "repository": { diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 421749b0..1da00ff3 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,43 +1,5 @@ # @stackwright/cli -## 0.8.1-alpha.1 - -### Patch Changes - -- Updated dependencies [bb4ecb7] - - @stackwright/build-scripts@0.6.0-alpha.1 - -## 0.8.1-alpha.0 - -### Patch Changes - -- f0b74ef: feat(cli): add --content flag to `page add` for inline YAML (#188) - - Agents can now create a page with full content in a single command instead of a two-step add + write sequence. Content is validated before writing; invalid YAML is rejected with field-level errors. - -- 90a22c6: fix(cli): --install flag now runs pnpm install before postInstall hooks -- a410f02: fix(cli): remove duplicate preInstall hook call from processTemplate - - `processTemplate()` was calling `runScaffoldHooks('preInstall', ...)` internally, - then `scaffold.ts` called it again after `processTemplate` returned — running every - preInstall handler twice. Worse, the second call passed the original empty `{}` object - (not the built package.json), so hooks registered via `scaffold.ts` could never affect - the written file. - - Fix: lifecycle orchestration now lives entirely in `scaffold.ts`. `buildPackageJson` is - exported so `scaffold.ts` can build the default package.json before running preInstall - hooks, then passes the already-hooks-modified object into `processTemplate` for writing. - `processTemplate` no longer calls hooks. - - Fixes #351. - -- Updated dependencies [bdf7fe0] -- Updated dependencies [bdf7fe0] -- Updated dependencies [68bdad5] -- Updated dependencies [83ba70c] - - @stackwright/types@1.3.0-alpha.0 - - @stackwright/build-scripts@0.6.0-alpha.0 - ## 0.8.0 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 3ba53399..20ca3495 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@stackwright/cli", - "version": "0.8.1-alpha.1", + "version": "0.8.0", "description": "CLI for Stackwright framework", "license": "MIT", "repository": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 0dcbdaf8..99032ec9 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,21 +1,5 @@ # @stackwright/core -## 0.8.1-alpha.0 - -### Patch Changes - -- c036f5b: chore: consolidate dependabot dependency updates - - `lucide-react`: `^0.525.0` → `^1.8.0` (icons, ui-shadcn) — includes icon rename fixes for v1 API (`CheckCircle` → `CircleCheck`, `Code2`/`Layout` backward-compat aliases) - - `@swc/core`: `^1.15.18` → `^1.15.26` (core, nextjs) - - `jsdom`: `^28.1.0` → `^29.0.2` (maplibre) - - `react-dom`: `19.2.4` → `19.2.5` (pnpm.overrides) - - `prettier`: `^3.8.1` → `^3.8.3` (devDependencies) - -- 5ad5035: fix(core): prevent duplicate TopAppBar rendering that caused a double dark-mode toggle icon -- Updated dependencies [bdf7fe0] -- Updated dependencies [68bdad5] - - @stackwright/types@1.3.0-alpha.0 - ## 0.8.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 6034eb2e..2aec1a45 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@stackwright/core", - "version": "0.8.1-alpha.0", + "version": "0.8.0", "description": "Core framework for building applications from YAML configuration", "license": "MIT", "repository": { diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index baae8f50..b3768769 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -1,16 +1,5 @@ # @stackwright/icons -## 0.5.1-alpha.0 - -### Patch Changes - -- c036f5b: chore: consolidate dependabot dependency updates - - `lucide-react`: `^0.525.0` → `^1.8.0` (icons, ui-shadcn) — includes icon rename fixes for v1 API (`CheckCircle` → `CircleCheck`, `Code2`/`Layout` backward-compat aliases) - - `@swc/core`: `^1.15.18` → `^1.15.26` (core, nextjs) - - `jsdom`: `^28.1.0` → `^29.0.2` (maplibre) - - `react-dom`: `19.2.4` → `19.2.5` (pnpm.overrides) - - `prettier`: `^3.8.1` → `^3.8.3` (devDependencies) - ## 0.5.0 ### Minor Changes diff --git a/packages/icons/package.json b/packages/icons/package.json index 4979d99a..f0789281 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@stackwright/icons", - "version": "0.5.1-alpha.0", + "version": "0.5.0", "description": "Lucide-based icon registry for Stackwright", "license": "MIT", "repository": { diff --git a/packages/launch-stackwright/CHANGELOG.md b/packages/launch-stackwright/CHANGELOG.md index c091aa95..6f605bd4 100644 --- a/packages/launch-stackwright/CHANGELOG.md +++ b/packages/launch-stackwright/CHANGELOG.md @@ -1,20 +1,5 @@ # launch-stackwright -## 0.2.1-alpha.1 - -### Patch Changes - -- @stackwright/cli@0.8.1-alpha.1 - -## 0.2.1-alpha.0 - -### Patch Changes - -- Updated dependencies [f0b74ef] -- Updated dependencies [90a22c6] -- Updated dependencies [a410f02] - - @stackwright/cli@0.8.1-alpha.0 - ## 0.2.0 ### Minor Changes diff --git a/packages/launch-stackwright/package.json b/packages/launch-stackwright/package.json index 3f8d770d..4904d857 100644 --- a/packages/launch-stackwright/package.json +++ b/packages/launch-stackwright/package.json @@ -1,6 +1,6 @@ { "name": "launch-stackwright", - "version": "0.2.1-alpha.1", + "version": "0.2.0", "description": "Launch a new Stackwright project with the otter raft ready to build", "license": "MIT", "repository": { diff --git a/packages/maplibre/CHANGELOG.md b/packages/maplibre/CHANGELOG.md index 824cd19f..bdeb6ebb 100644 --- a/packages/maplibre/CHANGELOG.md +++ b/packages/maplibre/CHANGELOG.md @@ -1,20 +1,5 @@ # @stackwright/maplibre -## 2.0.1-alpha.0 - -### Patch Changes - -- c036f5b: chore: consolidate dependabot dependency updates - - `lucide-react`: `^0.525.0` → `^1.8.0` (icons, ui-shadcn) — includes icon rename fixes for v1 API (`CheckCircle` → `CircleCheck`, `Code2`/`Layout` backward-compat aliases) - - `@swc/core`: `^1.15.18` → `^1.15.26` (core, nextjs) - - `jsdom`: `^28.1.0` → `^29.0.2` (maplibre) - - `react-dom`: `19.2.4` → `19.2.5` (pnpm.overrides) - - `prettier`: `^3.8.1` → `^3.8.3` (devDependencies) - -- Updated dependencies [c036f5b] -- Updated dependencies [5ad5035] - - @stackwright/core@0.8.1-alpha.0 - ## 2.0.0 ### Minor Changes diff --git a/packages/maplibre/package.json b/packages/maplibre/package.json index 634f34ca..a35b0b63 100644 --- a/packages/maplibre/package.json +++ b/packages/maplibre/package.json @@ -1,6 +1,6 @@ { "name": "@stackwright/maplibre", - "version": "2.0.1-alpha.0", + "version": "2.0.0", "description": "MapLibre GL adapter for Stackwright maps (free tier, no API keys required)", "license": "MIT", "repository": { diff --git a/packages/mcp/CHANGELOG.md b/packages/mcp/CHANGELOG.md index 47d53c57..092d8e0b 100644 --- a/packages/mcp/CHANGELOG.md +++ b/packages/mcp/CHANGELOG.md @@ -1,23 +1,5 @@ # @stackwright/mcp -## 0.4.1-alpha.1 - -### Patch Changes - -- @stackwright/cli@0.8.1-alpha.1 - -## 0.4.1-alpha.0 - -### Patch Changes - -- Updated dependencies [bdf7fe0] -- Updated dependencies [f0b74ef] -- Updated dependencies [90a22c6] -- Updated dependencies [68bdad5] -- Updated dependencies [a410f02] - - @stackwright/types@1.3.0-alpha.0 - - @stackwright/cli@0.8.1-alpha.0 - ## 0.4.0 ### Minor Changes diff --git a/packages/mcp/package.json b/packages/mcp/package.json index 9205ddb4..f61744e6 100644 --- a/packages/mcp/package.json +++ b/packages/mcp/package.json @@ -1,6 +1,6 @@ { "name": "@stackwright/mcp", - "version": "0.4.1-alpha.1", + "version": "0.4.0", "description": "MCP server for Stackwright — exposes content types, page management, and validation as agent tools", "license": "MIT", "repository": { diff --git a/packages/nextjs/CHANGELOG.md b/packages/nextjs/CHANGELOG.md index 8854c4ac..2d983d40 100644 --- a/packages/nextjs/CHANGELOG.md +++ b/packages/nextjs/CHANGELOG.md @@ -1,27 +1,5 @@ # @stackwright/nextjs -## 0.5.0-alpha.0 - -### Minor Changes - -- 6326d49: Add security headers (CSP, HSTS, COOP/CORP/COEP) to Next.js integration with customizable configuration - -### Patch Changes - -- c036f5b: chore: consolidate dependabot dependency updates - - `lucide-react`: `^0.525.0` → `^1.8.0` (icons, ui-shadcn) — includes icon rename fixes for v1 API (`CheckCircle` → `CircleCheck`, `Code2`/`Layout` backward-compat aliases) - - `@swc/core`: `^1.15.18` → `^1.15.26` (core, nextjs) - - `jsdom`: `^28.1.0` → `^29.0.2` (maplibre) - - `react-dom`: `19.2.4` → `19.2.5` (pnpm.overrides) - - `prettier`: `^3.8.1` → `^3.8.3` (devDependencies) - -- Updated dependencies [bdf7fe0] -- Updated dependencies [c036f5b] -- Updated dependencies [68bdad5] -- Updated dependencies [5ad5035] - - @stackwright/types@1.3.0-alpha.0 - - @stackwright/core@0.8.1-alpha.0 - ## 0.4.0 ### Minor Changes diff --git a/packages/nextjs/package.json b/packages/nextjs/package.json index df0d9b10..2819cf1b 100644 --- a/packages/nextjs/package.json +++ b/packages/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@stackwright/nextjs", - "version": "0.5.0-alpha.0", + "version": "0.4.0", "description": "Next.js implementations for Stackwright components", "license": "MIT", "repository": { diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 75ed7b7d..b3b9c907 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,17 +1,5 @@ # @stackwright/types -## 1.3.0-alpha.0 - -### Minor Changes - -- bdf7fe0: Add `contentItemSchemas` and `knownContentTypeKeys` to `PrebuildPlugin` interface. - Add `buildExtendedPageContentSchema()` function for merging OSS and plugin content schemas. - Add `ValidatePageContentOptions` to `validatePageContent()` for plugin-aware validation. - -### Patch Changes - -- 68bdad5: Add configSchema field to PrebuildPlugin for plugin config validation - ## 1.2.0 ### Minor Changes diff --git a/packages/types/package.json b/packages/types/package.json index a5c092d6..e5a642cc 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@stackwright/types", - "version": "1.3.0-alpha.0", + "version": "1.2.0", "description": "TypeScript types and JSON schemas for Stackwright", "license": "MIT", "repository": { diff --git a/packages/ui-shadcn/CHANGELOG.md b/packages/ui-shadcn/CHANGELOG.md index ea432401..c5d780a7 100644 --- a/packages/ui-shadcn/CHANGELOG.md +++ b/packages/ui-shadcn/CHANGELOG.md @@ -1,16 +1,5 @@ # @stackwright/ui-shadcn -## 0.1.2-alpha.0 - -### Patch Changes - -- c036f5b: chore: consolidate dependabot dependency updates - - `lucide-react`: `^0.525.0` → `^1.8.0` (icons, ui-shadcn) — includes icon rename fixes for v1 API (`CheckCircle` → `CircleCheck`, `Code2`/`Layout` backward-compat aliases) - - `@swc/core`: `^1.15.18` → `^1.15.26` (core, nextjs) - - `jsdom`: `^28.1.0` → `^29.0.2` (maplibre) - - `react-dom`: `19.2.4` → `19.2.5` (pnpm.overrides) - - `prettier`: `^3.8.1` → `^3.8.3` (devDependencies) - ## 0.1.1 ### Patch Changes diff --git a/packages/ui-shadcn/package.json b/packages/ui-shadcn/package.json index c61d2484..5dc258bd 100644 --- a/packages/ui-shadcn/package.json +++ b/packages/ui-shadcn/package.json @@ -1,6 +1,6 @@ { "name": "@stackwright/ui-shadcn", - "version": "0.1.2-alpha.0", + "version": "0.1.1", "description": "shadcn/ui + Tailwind CSS UI adapter for Stackwright", "license": "MIT", "repository": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8047d9e4..cc0e1060 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -31,7 +31,6 @@ overrides: '@hono/node-server': '>=1.19.10' basic-ftp: '>=5.3.0' express-rate-limit: '>=8.2.2' - uuid: '>=14.0.0' importers: @@ -287,8 +286,8 @@ importers: specifier: ^1.30.0 version: 1.30.0 uuid: - specifier: '>=14.0.0' - version: 14.0.0 + specifier: ^13.0.0 + version: 13.0.0 zod: specifier: ^4.3.6 version: 4.3.6 @@ -5832,8 +5831,8 @@ packages: uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - uuid@14.0.0: - resolution: {integrity: sha512-Qo+uWgilfSmAhXCMav1uYFynlQO7fMFiMVZsQqZRMIXp0O7rR7qjkj+cPvBHLgBqi960QCoo/PH2/6ZtVqKvrg==} + uuid@13.0.0: + resolution: {integrity: sha512-XQegIaBTVUjSHliKqcnFqYypAd4S+WCYt5NIeRs6w/UAry7z8Y9j5ZwRRL4kzq9U3sD6v+85er9FvkEaBpji2w==} hasBin: true vary@1.1.2: @@ -11444,7 +11443,7 @@ snapshots: dependencies: punycode: 2.3.1 - uuid@14.0.0: {} + uuid@13.0.0: {} vary@1.1.2: {}