@nu-art/build-and-install 0.204.52 → 0.204.54

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nu-art/build-and-install",
3
- "version": "0.204.52",
3
+ "version": "0.204.54",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "TacB0sS",
package/phases/phases.js CHANGED
@@ -463,8 +463,10 @@ exports.Phase_Compile = {
463
463
  const packages = consts_1.MemKey_Packages.get();
464
464
  if (pkg.type === 'sourceless' || pkg.type === types_1.PackageType_Python)
465
465
  return;
466
- if (fs.existsSync(pkg.output))
466
+ if (fs.existsSync(pkg.output)) {
467
467
  await fs_1.promises.rm(pkg.output, { recursive: true, force: true });
468
+ await fs_1.promises.mkdir(pkg.output, { recursive: true });
469
+ }
468
470
  const folder = 'main';
469
471
  const sourceFolder = `${pkg.path}/src/${folder}`;
470
472
  const pathToLocalTsConfig = `${sourceFolder}/${CONST_TS_Config}`;
package/tsconfig.json CHANGED
@@ -16,10 +16,7 @@
16
16
  "noUnusedLocals": true,
17
17
  "module": "commonjs",
18
18
  "sourceMap": true,
19
- "strict": true,
20
- "typeRoots": [
21
- "../types"
22
- ]
19
+ "strict": true
23
20
  },
24
21
  "esModuleInterop": true,
25
22
  "module": "ES2020"