desen 1.0.0-beta.0 → 1.0.0-beta.2

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -67,7 +67,7 @@ Design as a **constitution** (SPEC.md), not a sketch. Packages are **one impleme
67
67
  - Protocol: [SPEC.md](https://github.com/desenlabs/desen/blob/dev/SPEC.md)
68
68
  - Getting started: [GETTING-STARTED.md](https://github.com/desenlabs/desen/blob/dev/GETTING-STARTED.md)
69
69
  - Implementer cookbook: [IMPLEMENTATION-COOKBOOK.md](https://github.com/desenlabs/desen/blob/dev/IMPLEMENTATION-COOKBOOK.md)
70
- - Conformance suite: [conformance-suite-beta/](https://github.com/desenlabs/desen/tree/dev/conformance-suite-beta)
70
+ - Conformance suite: [packages/conformance/](https://github.com/desenlabs/desen/tree/dev/packages/conformance) — also on npm as [`@desenlabs/conformance`](https://www.npmjs.com/package/@desenlabs/conformance)
71
71
  - Site: [desen.run](https://desen.run)
72
72
 
73
73
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "desen",
3
- "version": "1.0.0-beta.0",
3
+ "version": "1.0.0-beta.2",
4
4
  "description": "DESEN Protocol — Framework-agnostic Design Environment Protocol",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Selman Ay",
@@ -51,8 +51,8 @@
51
51
  "dependencies": {
52
52
  "@clack/prompts": "^0.7.0",
53
53
  "picocolors": "^1.0.0",
54
- "@desenlabs/core": "1.0.0-beta.0",
55
- "@desenlabs/cli": "1.0.0-beta.0"
54
+ "@desenlabs/core": "1.0.0-beta.2",
55
+ "@desenlabs/cli": "1.0.0-beta.2"
56
56
  },
57
57
  "devDependencies": {
58
58
  "typescript": "^5.0.0",
@@ -65,8 +65,8 @@
65
65
  "scripts": {
66
66
  "postinstall": "node ./dist/postinstall.js 2>/dev/null || true",
67
67
  "build": "tsc && chmod +x ./dist/bin.js",
68
- "test": "vitest run",
69
- "test:coverage": "vitest run --coverage",
68
+ "test": "vitest run --passWithNoTests",
69
+ "test:coverage": "vitest run --coverage --passWithNoTests",
70
70
  "dev": "tsc -w",
71
71
  "clean": "rm -rf dist"
72
72
  }