Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .changeset/flags-subpath.md

This file was deleted.

2 changes: 1 addition & 1 deletion packages/dds-css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devslab/dds-css",
"version": "0.4.0",
"version": "0.4.1",
"description": "DDS CSS component layer — class-based, framework-neutral, semantic-token-only (spec §4.3 v1 inventory, 20 components)",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
Expand Down
2 changes: 1 addition & 1 deletion packages/dds-icons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devslab/dds-icons",
"version": "0.4.0",
"version": "0.4.1",
"description": "DDS icon set — one SVG source (24 grid, currentColor), shipped as files, a sprite and a path-data map",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
Expand Down
8 changes: 4 additions & 4 deletions packages/dds-solid/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devslab/dds-solid",
"version": "0.4.0",
"version": "0.4.1",
"description": "Accessible SolidJS primitives for the DevsLab Design System",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
Expand Down Expand Up @@ -43,9 +43,9 @@
"test:a11y": "vitest run --config vitest.config.ts src/__tests__/a11y.test.tsx"
},
"dependencies": {
"@devslab/dds-css": "workspace:0.4.0",
"@devslab/dds-icons": "workspace:0.4.0",
"@devslab/dds-tokens": "workspace:0.4.0"
"@devslab/dds-css": "workspace:0.4.1",
"@devslab/dds-icons": "workspace:0.4.1",
"@devslab/dds-tokens": "workspace:0.4.1"
},
"peerDependencies": {
"solid-js": "1.9.15"
Expand Down
2 changes: 1 addition & 1 deletion packages/dds-tokens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devslab/dds-tokens",
"version": "0.4.0",
"version": "0.4.1",
"description": "DDS (DevsLab Design System) design tokens — one JSON source, built for CSS, Tailwind, TypeScript/RN and Ionic",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
Expand Down
4 changes: 2 additions & 2 deletions packages/site-kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devslab/site-kit",
"version": "0.4.0",
"version": "0.4.1",
"description": "Strict i18n, SEO/GEO, and Solid public-site shells for DevsLab products",
"type": "module",
"license": "SEE LICENSE IN LICENSE",
Expand Down Expand Up @@ -60,7 +60,7 @@
"test:worker": "wrangler deploy --dry-run --config fixtures/worker/wrangler.jsonc --outdir dist-worker"
},
"dependencies": {
"@devslab/dds-solid": "workspace:0.4.0"
"@devslab/dds-solid": "workspace:0.4.1"
},
"peerDependencies": {
"@tanstack/solid-router": "1.170.30",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/foundation-contracts.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ test("public foundation packages use the @devslab scope, source-available licens
for (const [path, name] of Object.entries(expected)) {
const manifest = await json(path);
assert.equal(manifest.name, name);
assert.equal(manifest.version, "0.4.0");
assert.equal(manifest.version, "0.4.1");
assert.equal(manifest.license, "SEE LICENSE IN LICENSE");
assert.equal(manifest.publishConfig?.registry, "https://registry.npmjs.org");
assert.equal(manifest.publishConfig?.access, "public");
Expand Down Expand Up @@ -58,7 +58,7 @@ test("unpublished DDS packages bootstrap from this workspace", async () => {
for (const name of names) {
assert.equal(
manifest.dependencies?.[name],
"workspace:0.4.0",
"workspace:0.4.1",
`${path} must resolve unpublished ${name} from the local release workspace`,
);
}
Expand Down