Skip to content

Commit fcae376

Browse files
authored
release: 0.3.0 (#108)
* release: 0.3.0 * fix: remove hardcoded local path from DTCG conformance test * test: skip DTCG conformance test (upstream @terrazzo/token-types removed from npm)
1 parent c22a601 commit fcae376

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google/design.md",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Bridging design systems and code: a linter and exporter for the DESIGN.md format",
55
"keywords": [
66
"design.md"

packages/cli/src/linter/dtcg/conformance.test.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ import { lint } from '../lint.js';
2121
import { DtcgEmitterHandler } from './handler.js';
2222

2323
describe('DTCG Conformance', () => {
24-
test('Terrazzo can parse our DTCG output and generate CSS', () => {
24+
// Skipped: @terrazzo/token-types@^2.4.0 was removed from npm (404).
25+
// This test depends on installing Terrazzo from the public registry.
26+
// Re-enable once Terrazzo publishes a fix. See: https://github.com/google-labs-code/design.md/issues/106
27+
test.skip('Terrazzo can parse our DTCG output and generate CSS', () => {
2528
const fixtureContent = `---
2629
name: Test Brand
2730
colors:
@@ -81,7 +84,7 @@ export default defineConfig({
8184

8285
// Install dependencies in temp dir so they can be imported in config
8386
// Using bun add should be fast if cached
84-
const customPath = `${process.env.PATH || ''}:/Users/dalmaer/.bun/bin`;
87+
const customPath = process.env.PATH || '';
8588
const installProc = spawnSync('bun', ['add', '@terrazzo/cli', '@terrazzo/plugin-css'], {
8689
cwd: tmpDir,
8790
env: { ...process.env, PATH: customPath },

0 commit comments

Comments
 (0)