@kb-labs/devkit 2.119.0-canary.cee505c72 → 2.119.0-canary.f8394d5fd

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.
@@ -2,9 +2,8 @@ import { readFileSync } from 'node:fs'
2
2
  import { fileURLToPath } from 'node:url'
3
3
  import { describe, expect, it } from 'vitest'
4
4
 
5
- // kb-create merges this snippet into a fresh project's CLAUDE.md during
6
- // install (tools/kb-create/internal/claude/claudemd.go), so a stale command
7
- // here reaches every new user's onboarding doc verbatim.
5
+ // The platform onboarding surface consumes this snippet during project setup;
6
+ // keep it independent from the launcher's V2 artifact application boundary.
8
7
  const snippetPath = fileURLToPath(new URL('./CLAUDE.md.snippet', import.meta.url))
9
8
  const snippet = readFileSync(snippetPath, 'utf8')
10
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kb-labs/devkit",
3
3
  "description": "Shared developer toolkit for KB Labs projects: TS/ESLint/Prettier/Vitest/Tsup presets and reusable GitHub Actions.",
4
- "version": "2.119.0-canary.cee505c72",
4
+ "version": "2.119.0-canary.f8394d5fd",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "exports": {
@@ -136,7 +136,7 @@
136
136
  "typescript": "^5.9.2",
137
137
  "typescript-eslint": "^8.44.0",
138
138
  "vitest": "^3.2.6",
139
- "@kb-labs/devkit": "2.119.0-canary.cee505c72"
139
+ "@kb-labs/devkit": "2.119.0-canary.f8394d5fd"
140
140
  },
141
141
  "engines": {
142
142
  "node": ">=22.0.0",
@@ -113,7 +113,7 @@ describe('cssModulesPlugin', () => {
113
113
 
114
114
  const { css } = await bundle(dir);
115
115
 
116
- const keyframesMatch = css.match(/@keyframes (spin_\w+)/);
116
+ const keyframesMatch = css.match(/@keyframes (spin_[\w-]+)/);
117
117
  expect(keyframesMatch).not.toBeNull();
118
118
  const scopedKeyframesName = keyframesMatch![1];
119
119