@ifc-lite/codegen 1.15.1 → 1.15.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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @ifc-lite/codegen@1.15.1 build /home/runner/work/ifc-lite/ifc-lite/packages/codegen
3
- > tsc
2
+ > @ifc-lite/codegen@1.15.2 build /home/runner/work/ifc-lite/ifc-lite/packages/codegen
3
+ > pnpm exec tsc
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ifc-lite/codegen
2
2
 
3
+ ## 1.15.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [#494](https://github.com/louistrue/ifc-lite/pull/494) [`ec0d3a0`](https://github.com/louistrue/ifc-lite/commit/ec0d3a0e4c7f9eaeb26ab0a724fd76d955e52ac5) Thanks [@louistrue](https://github.com/louistrue)! - Remove recursive package `prebuild` hooks and run TypeScript via `pnpm exec` so workspace builds resolve correctly on Windows.
8
+
3
9
  ## 1.15.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ifc-lite/codegen",
3
- "version": "1.15.1",
3
+ "version": "1.15.2",
4
4
  "description": "TypeScript code generator from IFC EXPRESS schemas",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -22,8 +22,8 @@
22
22
  "vitest": "^1.0.4"
23
23
  },
24
24
  "scripts": {
25
- "build": "tsc",
26
- "dev": "tsc --watch",
25
+ "build": "pnpm exec tsc",
26
+ "dev": "pnpm exec tsc --watch",
27
27
  "test": "vitest run",
28
28
  "generate": "node dist/cli.js",
29
29
  "generate:ifc4": "node dist/cli.js schemas/IFC4.exp -o generated/ifc4",