@storm-software/workspace-tools 1.7.33 → 1.7.35
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/CHANGELOG.md +14 -0
- package/index.js +28 -18
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +28 -18
- package/src/executors/tsup/get-config.js +28 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.7.34](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.7.33...workspace-tools-v1.7.34) (2023-11-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Resolved issue with package export lookup in tsup patch ([ba53a36](https://github.com/storm-software/storm-ops/commit/ba53a3606b60e78d0f66894c6e3bc5d116ddaacd))
|
|
7
|
+
|
|
8
|
+
## [1.7.33](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.7.32...workspace-tools-v1.7.33) (2023-11-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **workspace-tools:** Resolved bad tsconfig path issue in tsup patch ([564b0b5](https://github.com/storm-software/storm-ops/commit/564b0b5cd054852106328fb047cd77baefea962e))
|
|
14
|
+
|
|
1
15
|
## [1.7.32](https://github.com/storm-software/storm-ops/compare/workspace-tools-v1.7.31...workspace-tools-v1.7.32) (2023-11-20)
|
|
2
16
|
|
|
3
17
|
|
package/index.js
CHANGED
|
@@ -408390,9 +408390,9 @@ var require_brace_expansion2 = __commonJS({
|
|
|
408390
408390
|
}
|
|
408391
408391
|
});
|
|
408392
408392
|
|
|
408393
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
408393
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=kwgazfmubmkq7jyd424uu6cfou_@swc+core@1.3.96_ts-node@10.9.1_typescript@5.2.2/node_modules/tsup/dist/chunk-EPAEWGCP.js
|
|
408394
408394
|
var require_chunk_EPAEWGCP = __commonJS({
|
|
408395
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
408395
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=kwgazfmubmkq7jyd424uu6cfou_@swc+core@1.3.96_ts-node@10.9.1_typescript@5.2.2/node_modules/tsup/dist/chunk-EPAEWGCP.js"(exports) {
|
|
408396
408396
|
"use strict";
|
|
408397
408397
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
408398
408398
|
var version = "8.0.0";
|
|
@@ -410039,9 +410039,9 @@ var require_resolve_from = __commonJS({
|
|
|
410039
410039
|
}
|
|
410040
410040
|
});
|
|
410041
410041
|
|
|
410042
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
410042
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=kwgazfmubmkq7jyd424uu6cfou_@swc+core@1.3.96_ts-node@10.9.1_typescript@5.2.2/node_modules/tsup/dist/chunk-GQ77QZBO.js
|
|
410043
410043
|
var require_chunk_GQ77QZBO = __commonJS({
|
|
410044
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
410044
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=kwgazfmubmkq7jyd424uu6cfou_@swc+core@1.3.96_ts-node@10.9.1_typescript@5.2.2/node_modules/tsup/dist/chunk-GQ77QZBO.js"(exports) {
|
|
410045
410045
|
"use strict";
|
|
410046
410046
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
410047
410047
|
function _interopRequireDefault(obj) {
|
|
@@ -410238,14 +410238,14 @@ var require_chunk_GQ77QZBO = __commonJS({
|
|
|
410238
410238
|
dts: dtsExtension
|
|
410239
410239
|
};
|
|
410240
410240
|
}
|
|
410241
|
-
function ensureTempDeclarationDir() {
|
|
410241
|
+
function ensureTempDeclarationDir(options) {
|
|
410242
410242
|
const cwd = process.cwd();
|
|
410243
|
-
const dirPath = _path2.default.join(cwd, ".tsup", "declaration");
|
|
410243
|
+
const dirPath = _path2.default.join(cwd, "tmp", ".tsup", "declaration");
|
|
410244
410244
|
if (_fs2.default.existsSync(dirPath)) {
|
|
410245
410245
|
return dirPath;
|
|
410246
410246
|
}
|
|
410247
410247
|
_fs2.default.mkdirSync(dirPath, { recursive: true });
|
|
410248
|
-
const gitIgnorePath = _path2.default.join(cwd, ".tsup", ".gitignore");
|
|
410248
|
+
const gitIgnorePath = _path2.default.join(cwd, "tmp", ".tsup", ".gitignore");
|
|
410249
410249
|
writeFileSync(gitIgnorePath, "**/*\n");
|
|
410250
410250
|
return dirPath;
|
|
410251
410251
|
}
|
|
@@ -410320,9 +410320,9 @@ var require_chunk_GQ77QZBO = __commonJS({
|
|
|
410320
410320
|
}
|
|
410321
410321
|
});
|
|
410322
410322
|
|
|
410323
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
410323
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=kwgazfmubmkq7jyd424uu6cfou_@swc+core@1.3.96_ts-node@10.9.1_typescript@5.2.2/node_modules/tsup/dist/chunk-UIX4URMV.js
|
|
410324
410324
|
var require_chunk_UIX4URMV = __commonJS({
|
|
410325
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
410325
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=kwgazfmubmkq7jyd424uu6cfou_@swc+core@1.3.96_ts-node@10.9.1_typescript@5.2.2/node_modules/tsup/dist/chunk-UIX4URMV.js"(exports) {
|
|
410326
410326
|
"use strict";
|
|
410327
410327
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
410328
410328
|
function _interopRequireWildcard(obj) {
|
|
@@ -411256,9 +411256,9 @@ var require_dist2 = __commonJS({
|
|
|
411256
411256
|
}
|
|
411257
411257
|
});
|
|
411258
411258
|
|
|
411259
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
411259
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=kwgazfmubmkq7jyd424uu6cfou_@swc+core@1.3.96_ts-node@10.9.1_typescript@5.2.2/node_modules/tsup/dist/chunk-7G76EW2R.js
|
|
411260
411260
|
var require_chunk_7G76EW2R = __commonJS({
|
|
411261
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
411261
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=kwgazfmubmkq7jyd424uu6cfou_@swc+core@1.3.96_ts-node@10.9.1_typescript@5.2.2/node_modules/tsup/dist/chunk-7G76EW2R.js"(exports) {
|
|
411262
411262
|
"use strict";
|
|
411263
411263
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
411264
411264
|
function _interopRequireDefault(obj) {
|
|
@@ -465064,9 +465064,9 @@ var require_chokidar = __commonJS({
|
|
|
465064
465064
|
}
|
|
465065
465065
|
});
|
|
465066
465066
|
|
|
465067
|
-
// node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
465067
|
+
// node_modules/.pnpm/tsup@8.0.0_patch_hash=kwgazfmubmkq7jyd424uu6cfou_@swc+core@1.3.96_ts-node@10.9.1_typescript@5.2.2/node_modules/tsup/dist/index.js
|
|
465068
465068
|
var require_dist5 = __commonJS({
|
|
465069
|
-
"node_modules/.pnpm/tsup@8.0.0_patch_hash=
|
|
465069
|
+
"node_modules/.pnpm/tsup@8.0.0_patch_hash=kwgazfmubmkq7jyd424uu6cfou_@swc+core@1.3.96_ts-node@10.9.1_typescript@5.2.2/node_modules/tsup/dist/index.js"(exports) {
|
|
465070
465070
|
"use strict";
|
|
465071
465071
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
465072
465072
|
function _interopRequireDefault(obj) {
|
|
@@ -467254,13 +467254,17 @@ var require_dist5 = __commonJS({
|
|
|
467254
467254
|
return alias;
|
|
467255
467255
|
}
|
|
467256
467256
|
}, _class);
|
|
467257
|
-
function getExports(program, fileMapping) {
|
|
467257
|
+
function getExports(options, program, fileMapping) {
|
|
467258
467258
|
let checker = program.getTypeChecker();
|
|
467259
467259
|
let aliasPool = new AliasPool();
|
|
467260
467260
|
let assignAlias = aliasPool.assign.bind(aliasPool);
|
|
467261
|
+
const packagePath = _path.join(
|
|
467262
|
+
program.getCurrentDirectory(),
|
|
467263
|
+
packageJsonSearch(options.outDir, options.silent, "dts", logger)
|
|
467264
|
+
);
|
|
467265
|
+
logger.info("dts", `\u26A1 Getting Exports (DTS generate): ${packagePath}`);
|
|
467261
467266
|
function extractExports(sourceFileName) {
|
|
467262
|
-
|
|
467263
|
-
sourceFileName = _chunkGQ77QZBOjs.toAbsolutePath.call(void 0, sourceFileName, cwd);
|
|
467267
|
+
sourceFileName = _chunkGQ77QZBOjs.toAbsolutePath.call(void 0, sourceFileName, packagePath);
|
|
467264
467268
|
const sourceFile = program.getSourceFile(sourceFileName);
|
|
467265
467269
|
if (!sourceFile) {
|
|
467266
467270
|
return [];
|
|
@@ -467346,7 +467350,7 @@ var require_dist5 = __commonJS({
|
|
|
467346
467350
|
return fileMapping;
|
|
467347
467351
|
}
|
|
467348
467352
|
function emit(options, compilerOptions, tsconfig) {
|
|
467349
|
-
logger.info("tsc", `Trying to find ${tsconfig || "
|
|
467353
|
+
logger.info("tsc", `Trying to find ${tsconfig || "tsconfig.json"}`);
|
|
467350
467354
|
let rawTsconfig = _bundlerequire.loadTsConfig.call(
|
|
467351
467355
|
void 0,
|
|
467352
467356
|
_path.dirname.call(void 0, tsconfig),
|
|
@@ -467355,7 +467359,10 @@ var require_dist5 = __commonJS({
|
|
|
467355
467359
|
if (!rawTsconfig) {
|
|
467356
467360
|
throw new Error(`Unable to find ${tsconfig || "tsconfig.json"}`);
|
|
467357
467361
|
}
|
|
467362
|
+
logger.info("tsc", "Getting temporary declaration directory");
|
|
467358
467363
|
let declarationDir = _chunkGQ77QZBOjs.ensureTempDeclarationDir.call(void 0);
|
|
467364
|
+
logger.info("tsc", declarationDir);
|
|
467365
|
+
logger.info("tsc", "Parsed tsconfig.json");
|
|
467359
467366
|
let parsedTsconfig = _typescript2.default.parseJsonConfigFileContent(
|
|
467360
467367
|
{
|
|
467361
467368
|
...rawTsconfig.data,
|
|
@@ -467373,14 +467380,17 @@ var require_dist5 = __commonJS({
|
|
|
467373
467380
|
_typescript2.default.sys,
|
|
467374
467381
|
tsconfig ? _path.dirname.call(void 0, tsconfig) : options.projectRoot
|
|
467375
467382
|
);
|
|
467383
|
+
logger.info("tsc", parsedTsconfig);
|
|
467376
467384
|
let host = _typescript2.default.createCompilerHost(parsedTsconfig.options);
|
|
467377
467385
|
let program = _typescript2.default.createProgram(
|
|
467378
467386
|
parsedTsconfig.fileNames,
|
|
467379
467387
|
parsedTsconfig.options,
|
|
467380
467388
|
host
|
|
467381
467389
|
);
|
|
467390
|
+
logger.info("tsc", "Emitting DTS files");
|
|
467382
467391
|
let fileMapping = emitDtsFiles(program, host);
|
|
467383
|
-
|
|
467392
|
+
logger.info("tsc", fileMapping);
|
|
467393
|
+
return getExports(options, program, fileMapping);
|
|
467384
467394
|
}
|
|
467385
467395
|
function runTypeScriptCompiler(options) {
|
|
467386
467396
|
try {
|