@storm-software/workspace-tools 1.60.9 → 1.60.10
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 +12 -0
- package/index.js +2 -29
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/executors/tsup/executor.js +2 -29
- package/src/executors/tsup-browser/executor.js +2 -29
- package/src/executors/tsup-neutral/executor.js +2 -29
- package/src/executors/tsup-node/executor.js +2 -29
package/package.json
CHANGED
|
@@ -465361,21 +465361,6 @@ ${externalDependencies.map((dep) => {
|
|
|
465361
465361
|
return `name: ${dep.name}, node: ${dep.node}, outputs: ${dep.outputs}`;
|
|
465362
465362
|
}).join("\n")}`
|
|
465363
465363
|
);
|
|
465364
|
-
const prettier = await Promise.resolve().then(() => (init_prettier(), prettier_exports));
|
|
465365
|
-
const prettierOptions = {
|
|
465366
|
-
plugins: ["prettier-plugin-packagejson"],
|
|
465367
|
-
trailingComma: "none",
|
|
465368
|
-
tabWidth: 2,
|
|
465369
|
-
semi: true,
|
|
465370
|
-
singleQuote: false,
|
|
465371
|
-
quoteProps: "preserve",
|
|
465372
|
-
insertPragma: false,
|
|
465373
|
-
bracketSameLine: true,
|
|
465374
|
-
printWidth: 80,
|
|
465375
|
-
bracketSpacing: true,
|
|
465376
|
-
arrowParens: "avoid",
|
|
465377
|
-
endOfLine: "lf"
|
|
465378
|
-
};
|
|
465379
465364
|
let entryPoints = [];
|
|
465380
465365
|
if (options8.entry) {
|
|
465381
465366
|
entryPoints.push(options8.entry);
|
|
@@ -465517,13 +465502,7 @@ ${externalDependencies.map((dep) => {
|
|
|
465517
465502
|
packageJson.repository.directory ??= projectRoot ? projectRoot : (0, import_devkit3.joinPathFragments)("packages", context.projectName);
|
|
465518
465503
|
const packageJsonPath = (0, import_devkit3.joinPathFragments)(context.root, options8.outputPath, "package.json");
|
|
465519
465504
|
writeDebug(config, `\u26A1 Writing package.json file to: ${packageJsonPath}`);
|
|
465520
|
-
(0, import_node_fs3.writeFileSync)(
|
|
465521
|
-
packageJsonPath,
|
|
465522
|
-
await prettier.format(JSON.stringify(packageJson), {
|
|
465523
|
-
...prettierOptions,
|
|
465524
|
-
parser: "json"
|
|
465525
|
-
})
|
|
465526
|
-
);
|
|
465505
|
+
(0, import_node_fs3.writeFileSync)(packageJsonPath, JSON.stringify(packageJson));
|
|
465527
465506
|
} else {
|
|
465528
465507
|
writeWarning(config, "Skipping writing to package.json file");
|
|
465529
465508
|
}
|
|
@@ -465538,15 +465517,9 @@ ${externalDependencies.map((dep) => {
|
|
|
465538
465517
|
files.map(
|
|
465539
465518
|
async (file) => (0, import_fs_extra.writeFile)(
|
|
465540
465519
|
file,
|
|
465541
|
-
|
|
465542
|
-
`${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
|
|
465520
|
+
`${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
|
|
465543
465521
|
|
|
465544
465522
|
${(0, import_node_fs3.readFileSync)(file, "utf-8")}`,
|
|
465545
|
-
{
|
|
465546
|
-
...prettierOptions,
|
|
465547
|
-
parser: "typescript"
|
|
465548
|
-
}
|
|
465549
|
-
),
|
|
465550
465523
|
"utf-8"
|
|
465551
465524
|
)
|
|
465552
465525
|
)
|
|
@@ -465391,21 +465391,6 @@ ${externalDependencies.map((dep) => {
|
|
|
465391
465391
|
return `name: ${dep.name}, node: ${dep.node}, outputs: ${dep.outputs}`;
|
|
465392
465392
|
}).join("\n")}`
|
|
465393
465393
|
);
|
|
465394
|
-
const prettier = await Promise.resolve().then(() => (init_prettier(), prettier_exports));
|
|
465395
|
-
const prettierOptions = {
|
|
465396
|
-
plugins: ["prettier-plugin-packagejson"],
|
|
465397
|
-
trailingComma: "none",
|
|
465398
|
-
tabWidth: 2,
|
|
465399
|
-
semi: true,
|
|
465400
|
-
singleQuote: false,
|
|
465401
|
-
quoteProps: "preserve",
|
|
465402
|
-
insertPragma: false,
|
|
465403
|
-
bracketSameLine: true,
|
|
465404
|
-
printWidth: 80,
|
|
465405
|
-
bracketSpacing: true,
|
|
465406
|
-
arrowParens: "avoid",
|
|
465407
|
-
endOfLine: "lf"
|
|
465408
|
-
};
|
|
465409
465394
|
let entryPoints = [];
|
|
465410
465395
|
if (options8.entry) {
|
|
465411
465396
|
entryPoints.push(options8.entry);
|
|
@@ -465547,13 +465532,7 @@ ${externalDependencies.map((dep) => {
|
|
|
465547
465532
|
packageJson.repository.directory ??= projectRoot ? projectRoot : (0, import_devkit3.joinPathFragments)("packages", context.projectName);
|
|
465548
465533
|
const packageJsonPath = (0, import_devkit3.joinPathFragments)(context.root, options8.outputPath, "package.json");
|
|
465549
465534
|
writeDebug(config, `\u26A1 Writing package.json file to: ${packageJsonPath}`);
|
|
465550
|
-
(0, import_node_fs3.writeFileSync)(
|
|
465551
|
-
packageJsonPath,
|
|
465552
|
-
await prettier.format(JSON.stringify(packageJson), {
|
|
465553
|
-
...prettierOptions,
|
|
465554
|
-
parser: "json"
|
|
465555
|
-
})
|
|
465556
|
-
);
|
|
465535
|
+
(0, import_node_fs3.writeFileSync)(packageJsonPath, JSON.stringify(packageJson));
|
|
465557
465536
|
} else {
|
|
465558
465537
|
writeWarning(config, "Skipping writing to package.json file");
|
|
465559
465538
|
}
|
|
@@ -465568,15 +465547,9 @@ ${externalDependencies.map((dep) => {
|
|
|
465568
465547
|
files.map(
|
|
465569
465548
|
async (file) => (0, import_fs_extra.writeFile)(
|
|
465570
465549
|
file,
|
|
465571
|
-
|
|
465572
|
-
`${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
|
|
465550
|
+
`${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
|
|
465573
465551
|
|
|
465574
465552
|
${(0, import_node_fs3.readFileSync)(file, "utf-8")}`,
|
|
465575
|
-
{
|
|
465576
|
-
...prettierOptions,
|
|
465577
|
-
parser: "typescript"
|
|
465578
|
-
}
|
|
465579
|
-
),
|
|
465580
465553
|
"utf-8"
|
|
465581
465554
|
)
|
|
465582
465555
|
)
|
|
@@ -465391,21 +465391,6 @@ ${externalDependencies.map((dep) => {
|
|
|
465391
465391
|
return `name: ${dep.name}, node: ${dep.node}, outputs: ${dep.outputs}`;
|
|
465392
465392
|
}).join("\n")}`
|
|
465393
465393
|
);
|
|
465394
|
-
const prettier = await Promise.resolve().then(() => (init_prettier(), prettier_exports));
|
|
465395
|
-
const prettierOptions = {
|
|
465396
|
-
plugins: ["prettier-plugin-packagejson"],
|
|
465397
|
-
trailingComma: "none",
|
|
465398
|
-
tabWidth: 2,
|
|
465399
|
-
semi: true,
|
|
465400
|
-
singleQuote: false,
|
|
465401
|
-
quoteProps: "preserve",
|
|
465402
|
-
insertPragma: false,
|
|
465403
|
-
bracketSameLine: true,
|
|
465404
|
-
printWidth: 80,
|
|
465405
|
-
bracketSpacing: true,
|
|
465406
|
-
arrowParens: "avoid",
|
|
465407
|
-
endOfLine: "lf"
|
|
465408
|
-
};
|
|
465409
465394
|
let entryPoints = [];
|
|
465410
465395
|
if (options8.entry) {
|
|
465411
465396
|
entryPoints.push(options8.entry);
|
|
@@ -465547,13 +465532,7 @@ ${externalDependencies.map((dep) => {
|
|
|
465547
465532
|
packageJson.repository.directory ??= projectRoot ? projectRoot : (0, import_devkit3.joinPathFragments)("packages", context.projectName);
|
|
465548
465533
|
const packageJsonPath = (0, import_devkit3.joinPathFragments)(context.root, options8.outputPath, "package.json");
|
|
465549
465534
|
writeDebug(config, `\u26A1 Writing package.json file to: ${packageJsonPath}`);
|
|
465550
|
-
(0, import_node_fs3.writeFileSync)(
|
|
465551
|
-
packageJsonPath,
|
|
465552
|
-
await prettier.format(JSON.stringify(packageJson), {
|
|
465553
|
-
...prettierOptions,
|
|
465554
|
-
parser: "json"
|
|
465555
|
-
})
|
|
465556
|
-
);
|
|
465535
|
+
(0, import_node_fs3.writeFileSync)(packageJsonPath, JSON.stringify(packageJson));
|
|
465557
465536
|
} else {
|
|
465558
465537
|
writeWarning(config, "Skipping writing to package.json file");
|
|
465559
465538
|
}
|
|
@@ -465568,15 +465547,9 @@ ${externalDependencies.map((dep) => {
|
|
|
465568
465547
|
files.map(
|
|
465569
465548
|
async (file) => (0, import_fs_extra.writeFile)(
|
|
465570
465549
|
file,
|
|
465571
|
-
|
|
465572
|
-
`${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
|
|
465550
|
+
`${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
|
|
465573
465551
|
|
|
465574
465552
|
${(0, import_node_fs3.readFileSync)(file, "utf-8")}`,
|
|
465575
|
-
{
|
|
465576
|
-
...prettierOptions,
|
|
465577
|
-
parser: "typescript"
|
|
465578
|
-
}
|
|
465579
|
-
),
|
|
465580
465553
|
"utf-8"
|
|
465581
465554
|
)
|
|
465582
465555
|
)
|
|
@@ -465391,21 +465391,6 @@ ${externalDependencies.map((dep) => {
|
|
|
465391
465391
|
return `name: ${dep.name}, node: ${dep.node}, outputs: ${dep.outputs}`;
|
|
465392
465392
|
}).join("\n")}`
|
|
465393
465393
|
);
|
|
465394
|
-
const prettier = await Promise.resolve().then(() => (init_prettier(), prettier_exports));
|
|
465395
|
-
const prettierOptions = {
|
|
465396
|
-
plugins: ["prettier-plugin-packagejson"],
|
|
465397
|
-
trailingComma: "none",
|
|
465398
|
-
tabWidth: 2,
|
|
465399
|
-
semi: true,
|
|
465400
|
-
singleQuote: false,
|
|
465401
|
-
quoteProps: "preserve",
|
|
465402
|
-
insertPragma: false,
|
|
465403
|
-
bracketSameLine: true,
|
|
465404
|
-
printWidth: 80,
|
|
465405
|
-
bracketSpacing: true,
|
|
465406
|
-
arrowParens: "avoid",
|
|
465407
|
-
endOfLine: "lf"
|
|
465408
|
-
};
|
|
465409
465394
|
let entryPoints = [];
|
|
465410
465395
|
if (options8.entry) {
|
|
465411
465396
|
entryPoints.push(options8.entry);
|
|
@@ -465547,13 +465532,7 @@ ${externalDependencies.map((dep) => {
|
|
|
465547
465532
|
packageJson.repository.directory ??= projectRoot ? projectRoot : (0, import_devkit3.joinPathFragments)("packages", context.projectName);
|
|
465548
465533
|
const packageJsonPath = (0, import_devkit3.joinPathFragments)(context.root, options8.outputPath, "package.json");
|
|
465549
465534
|
writeDebug(config, `\u26A1 Writing package.json file to: ${packageJsonPath}`);
|
|
465550
|
-
(0, import_node_fs3.writeFileSync)(
|
|
465551
|
-
packageJsonPath,
|
|
465552
|
-
await prettier.format(JSON.stringify(packageJson), {
|
|
465553
|
-
...prettierOptions,
|
|
465554
|
-
parser: "json"
|
|
465555
|
-
})
|
|
465556
|
-
);
|
|
465535
|
+
(0, import_node_fs3.writeFileSync)(packageJsonPath, JSON.stringify(packageJson));
|
|
465557
465536
|
} else {
|
|
465558
465537
|
writeWarning(config, "Skipping writing to package.json file");
|
|
465559
465538
|
}
|
|
@@ -465568,15 +465547,9 @@ ${externalDependencies.map((dep) => {
|
|
|
465568
465547
|
files.map(
|
|
465569
465548
|
async (file) => (0, import_fs_extra.writeFile)(
|
|
465570
465549
|
file,
|
|
465571
|
-
|
|
465572
|
-
`${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
|
|
465550
|
+
`${options8.banner ? options8.banner.startsWith("//") ? options8.banner : `// ${options8.banner}` : ""}
|
|
465573
465551
|
|
|
465574
465552
|
${(0, import_node_fs3.readFileSync)(file, "utf-8")}`,
|
|
465575
|
-
{
|
|
465576
|
-
...prettierOptions,
|
|
465577
|
-
parser: "typescript"
|
|
465578
|
-
}
|
|
465579
|
-
),
|
|
465580
465553
|
"utf-8"
|
|
465581
465554
|
)
|
|
465582
465555
|
)
|