cddl2ts 0.4.3 → 0.4.5

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.
package/.release-it.ts CHANGED
@@ -5,4 +5,7 @@ const config: Config = {
5
5
  ...baseConfig('cddl2ts'),
6
6
  };
7
7
 
8
+ console.log("Release-it config for cddl2ts loaded", config);
9
+
8
10
  export default config;
11
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cddl2ts",
3
- "version": "0.4.3",
3
+ "version": "0.4.5",
4
4
  "description": "A Node.js package that can generate a TypeScript definition based on a CDDL file",
5
5
  "author": "Christian Bromann <mail@bromann.dev>",
6
6
  "license": "MIT",
@@ -32,10 +32,10 @@
32
32
  "camelcase": "^9.0.0",
33
33
  "recast": "^0.23.11",
34
34
  "yargs": "^18.0.0",
35
- "cddl": "0.14.7"
35
+ "cddl": "0.14.10"
36
36
  },
37
37
  "scripts": {
38
- "release": "release-it --config .release-it.ts",
38
+ "release": "release-it --config .release-it.ts --VV",
39
39
  "release:ci": "pnpm release --ci --npm.skipChecks",
40
40
  "cli-examples": "run-p cli-examples:*",
41
41
  "cli-examples:local": "pnpm run compile && node ./bin/cddl2ts.js ../../examples/webdriver/local.cddl --unknown-as-any > ./cli-examples/local.ts && tsc -p ./cli-examples/tsconfig.json",
@@ -1,6 +0,0 @@
1
- import rootConfig from '../../changelogithub.base.config.js'
2
- import { defineConfig } from 'changelogithub'
3
-
4
- export default defineConfig({
5
- ...rootConfig('cddl2ts'),
6
- })