@deot/dev-builder 2.5.1 → 2.5.3

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
@@ -267,7 +267,7 @@ class Build {
267
267
  this.commandOptions = commandOptions;
268
268
  const { reactPackage, vuePackage, nodePackage } = commandOptions;
269
269
  this.isVuePackage = typeof vuePackage === "string" && (vuePackage === "*" || vuePackage.split(",").includes(this.packageName));
270
- this.isReactPackage = typeof vuePackage === "string" && (vuePackage === "*" || reactPackage.split(",").includes(this.packageName));
270
+ this.isReactPackage = typeof reactPackage === "string" && (reactPackage === "*" || reactPackage.split(",").includes(this.packageName));
271
271
  this.isNodePackage = typeof nodePackage === "string" && (nodePackage === "*" || nodePackage.split(",").includes(this.packageName));
272
272
  }
273
273
  async process() {
package/dist/index.es.js CHANGED
@@ -242,7 +242,7 @@ class Build {
242
242
  this.commandOptions = commandOptions;
243
243
  const { reactPackage, vuePackage, nodePackage } = commandOptions;
244
244
  this.isVuePackage = typeof vuePackage === "string" && (vuePackage === "*" || vuePackage.split(",").includes(this.packageName));
245
- this.isReactPackage = typeof vuePackage === "string" && (vuePackage === "*" || reactPackage.split(",").includes(this.packageName));
245
+ this.isReactPackage = typeof reactPackage === "string" && (reactPackage === "*" || reactPackage.split(",").includes(this.packageName));
246
246
  this.isNodePackage = typeof nodePackage === "string" && (nodePackage === "*" || nodePackage.split(",").includes(this.packageName));
247
247
  }
248
248
  async process() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deot/dev-builder",
3
- "version": "2.5.1",
3
+ "version": "2.5.3",
4
4
  "type": "module",
5
5
  "main": "dist/index.es.js",
6
6
  "types": "dist/index.d.ts",
@@ -29,7 +29,7 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "@deot/dev-react": "^2.5.0",
32
+ "@deot/dev-react": "^2.5.1",
33
33
  "@deot/dev-shared": "^2.5.0",
34
34
  "@deot/dev-vue": "^2.5.1",
35
35
  "@microsoft/api-extractor": "^7.36.4",