@shaclmate/cli 4.0.1 → 4.0.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 +2 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -12,12 +12,10 @@ Command line tool for generating [TypeScript](https://www.typescriptlang.org/) c
12
12
 
13
13
  npx -y "@shaclmate/cli@latest" generate ts your-shapes.shaclmate.ttl >generated.ts
14
14
 
15
- The generated code is serialized with minimal indentation and newlines. You will probably want to format it using a tool like [Biome](https://biomejs.dev/) or [prettier](https://prettier.io/).
16
-
17
15
  ## Runtime dependencies
18
16
 
19
- The generated TypeScript code relies on various third-party libraries. The exact set of dependencies will depend on the code generated. See the [GitHub repository](https://github.com/YOUR_ORG/shaclmate) for examples and full documentation.
17
+ The generated TypeScript code relies on various third-party libraries. The exact set of dependencies will depend on the code generated. See the [GitHub repository](https://github.com/minorg/shaclmate) for examples and full documentation.
20
18
 
21
19
  ## License
22
20
 
23
- [Apache 2.0](https://github.com/YOUR_ORG/shaclmate/blob/main/LICENSE)
21
+ [Apache 2.0](https://github.com/minorg/shaclmate/blob/main/LICENSE)
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "shaclmate": "dist/cli.js"
4
4
  },
5
5
  "dependencies": {
6
- "@shaclmate/compiler": "4.0.1",
6
+ "@shaclmate/compiler": "4.0.2",
7
7
  "@rdfjs/prefix-map": "~0.1.2",
8
8
  "@rdfjs/types": "~2.0.1",
9
9
  "@types/n3": "~1.26.0",
@@ -51,5 +51,5 @@
51
51
  },
52
52
  "type": "module",
53
53
  "types": "./dist/index.d.ts",
54
- "version": "4.0.1"
54
+ "version": "4.0.2"
55
55
  }