@domainlang/cli 0.4.2 → 0.5.0

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 +2 -2
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -1,10 +1,10 @@
1
1
  # @domainlang/cli
2
2
 
3
- [![npm version](https://img.shields.io/npm/v/@domainlang/cli.svg)](https://www.npmjs.com/package/@domainlang/cli)
3
+ [![npm version](https://img.shields.io/npm/v/@domainlang/cli.svg)](https://www.npmjs.com/package/@domainlang/cli)[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=DomainLang_DomainLang&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=DomainLang_DomainLang)[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=DomainLang_DomainLang&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=DomainLang_DomainLang)[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=DomainLang_DomainLang&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=DomainLang_DomainLang)
4
4
  [![License](https://img.shields.io/npm/l/@domainlang/cli.svg)](https://github.com/DomainLang/DomainLang/blob/main/LICENSE)
5
5
 
6
6
  Command-line interface for [DomainLang](https://github.com/DomainLang/DomainLang) - a Domain-Driven Design modeling language.
7
-
7
+
8
8
  ## Features
9
9
 
10
10
  - 📦 **Dependency Management** - Git-native model dependencies with version locking
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@domainlang/cli",
3
3
  "displayName": "DomainLang CLI",
4
4
  "description": "Command-line interface for DomainLang - validate, analyze, and manage Domain-Driven Design models",
5
- "version": "0.4.2",
5
+ "version": "0.5.0",
6
6
  "type": "module",
7
7
  "author": "larsbaunwall",
8
8
  "license": "Apache-2.0",
@@ -43,7 +43,8 @@
43
43
  "scripts": {
44
44
  "clean": "shx rm -fr *.tsbuildinfo out",
45
45
  "build": "tsc -b tsconfig.json",
46
- "build:clean": "npm run clean && npm run build"
46
+ "build:clean": "npm run clean && npm run build",
47
+ "test": "vitest run"
47
48
  },
48
49
  "dependencies": {
49
50
  "@domainlang/language": "0.1.0",
@@ -52,8 +53,10 @@
52
53
  },
53
54
  "devDependencies": {
54
55
  "@types/node": "~20.17.48",
56
+ "@vitest/coverage-v8": "^2.1.8",
55
57
  "shx": "~0.4.0",
56
- "typescript": "~5.8.3"
58
+ "typescript": "~5.8.3",
59
+ "vitest": "^2.1.8"
57
60
  },
58
61
  "volta": {
59
62
  "node": "20.19.2",