@cdktn/hcl2json 0.24.0-pre.11 → 0.24.0-pre.24

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/.spec.swcrc ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "jsc": {
3
+ "target": "es2017",
4
+ "parser": {
5
+ "syntax": "typescript",
6
+ "decorators": true,
7
+ "dynamicImport": true
8
+ },
9
+ "transform": {
10
+ "decoratorMetadata": true,
11
+ "legacyDecorator": true
12
+ },
13
+ "keepClassNames": true,
14
+ "externalHelpers": true,
15
+ "loose": true
16
+ },
17
+ "module": {
18
+ "type": "commonjs"
19
+ },
20
+ "sourceMaps": true,
21
+ "exclude": []
22
+ }
package/main.wasm.gz CHANGED
Binary file
package/package.json CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "@cdktn/hcl2json",
3
- "version": "0.24.0-pre.11",
3
+ "version": "0.24.0-pre.24",
4
4
  "description": "Transform HCL into JSON",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
7
+ "nx": {
8
+ "tags": [
9
+ "unit-test"
10
+ ]
11
+ },
7
12
  "publishConfig": {
8
13
  "access": "public"
9
14
  },
@@ -11,10 +16,7 @@
11
16
  "build": "tsc && ./build-go.sh",
12
17
  "watch": "tsc -w",
13
18
  "watch-preserve-output": "tsc -w --preserveWatchOutput",
14
- "test": "jest",
15
- "test:ci": "jest --ci",
16
19
  "test:update": "jest -u",
17
- "jest-watch": "jest --watch",
18
20
  "package": "./package.sh",
19
21
  "dist-clean": "rm -rf dist",
20
22
  "prebuild": "./prebuild.sh",
@@ -42,10 +44,7 @@
42
44
  },
43
45
  "devDependencies": {
44
46
  "@types/fs-extra": "11.0.4",
45
- "@types/jest": "30.0.0",
46
47
  "@types/node": "20.19.37",
47
- "jest": "^30.3.0",
48
- "ts-jest": "29.4.9",
49
48
  "typescript": "5.4.5"
50
49
  }
51
50
  }