@powerlines/plugin-deepkit 0.10.139 → 0.11.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.
package/dist/index.cjs CHANGED
@@ -46,17 +46,12 @@ const plugin = (options = {}) => {
46
46
  config() {
47
47
  return {
48
48
  transform: { deepkit: options ?? {} },
49
- build: {
50
- unbundle: false,
51
- skipNodeModulesBundle: false,
52
- external: [
53
- "@powerlines/deepkit",
54
- "@powerlines/deepkit/vendor/type-compiler",
55
- "@powerlines/deepkit/vendor/type-spec",
56
- "@powerlines/deepkit/vendor/type",
57
- "@powerlines/deepkit/vendor/core"
58
- ]
59
- }
49
+ build: { external: [
50
+ "@powerlines/deepkit/vendor/type-compiler",
51
+ "@powerlines/deepkit/vendor/type-spec",
52
+ "@powerlines/deepkit/vendor/type",
53
+ "@powerlines/deepkit/vendor/core"
54
+ ] }
60
55
  };
61
56
  },
62
57
  configResolved: {
@@ -74,7 +69,8 @@ const plugin = (options = {}) => {
74
69
  ...this.config.transform.tsc.compilerOptions ?? {},
75
70
  exclude: this.config.transform.deepkit.exclude ?? [],
76
71
  reflection,
77
- reflectionLevel
72
+ reflectionLevel,
73
+ configFilePath: this.tsconfig.tsconfigFilePath
78
74
  };
79
75
  this.config.transform.tsc.transformers ??= {
80
76
  before: [],
package/dist/index.mjs CHANGED
@@ -17,17 +17,12 @@ const plugin = (options = {}) => {
17
17
  config() {
18
18
  return {
19
19
  transform: { deepkit: options ?? {} },
20
- build: {
21
- unbundle: false,
22
- skipNodeModulesBundle: false,
23
- external: [
24
- "@powerlines/deepkit",
25
- "@powerlines/deepkit/vendor/type-compiler",
26
- "@powerlines/deepkit/vendor/type-spec",
27
- "@powerlines/deepkit/vendor/type",
28
- "@powerlines/deepkit/vendor/core"
29
- ]
30
- }
20
+ build: { external: [
21
+ "@powerlines/deepkit/vendor/type-compiler",
22
+ "@powerlines/deepkit/vendor/type-spec",
23
+ "@powerlines/deepkit/vendor/type",
24
+ "@powerlines/deepkit/vendor/core"
25
+ ] }
31
26
  };
32
27
  },
33
28
  configResolved: {
@@ -45,7 +40,8 @@ const plugin = (options = {}) => {
45
40
  ...this.config.transform.tsc.compilerOptions ?? {},
46
41
  exclude: this.config.transform.deepkit.exclude ?? [],
47
42
  reflection,
48
- reflectionLevel
43
+ reflectionLevel,
44
+ configFilePath: this.tsconfig.tsconfigFilePath
49
45
  };
50
46
  this.config.transform.tsc.transformers ??= {
51
47
  before: [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-deepkit",
3
- "version": "0.10.139",
3
+ "version": "0.11.0",
4
4
  "type": "module",
5
5
  "description": "A package containing a Powerlines plugin to assist in developing other Powerlines plugins.",
6
6
  "repository": {
@@ -118,15 +118,15 @@
118
118
  "keywords": ["deepkit", "powerlines", "storm-software", "powerlines-plugin"],
119
119
  "dependencies": {
120
120
  "@stryke/json": "^0.9.33",
121
- "@powerlines/deepkit": "^0.5.38",
122
- "@powerlines/plugin-tsc": "^0.2.131",
123
- "powerlines": "^0.36.27",
121
+ "@powerlines/deepkit": "^0.5.39",
122
+ "@powerlines/plugin-tsc": "^0.2.132",
123
+ "powerlines": "^0.36.28",
124
124
  "typescript": "^5.9.3"
125
125
  },
126
126
  "devDependencies": {
127
- "@powerlines/nx": "^0.11.53",
127
+ "@powerlines/nx": "^0.11.54",
128
128
  "@types/node": "^24.10.4"
129
129
  },
130
130
  "publishConfig": { "access": "public" },
131
- "gitHead": "fbc59ce584fd0f78d90d2dbaa18f9c9267bd3b61"
131
+ "gitHead": "6891ff1330798e807c4caef6134df09d9f57686d"
132
132
  }