@storm-software/tsdown 0.38.6 → 0.38.7
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/build.cjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkIOYL3O2Ecjs = require('./chunk-IOYL3O2E.cjs');
|
|
5
5
|
require('./chunk-IO7MJMVE.cjs');
|
|
6
6
|
require('./chunk-65E5RX7I.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
exports.build =
|
|
10
|
+
exports.build = _chunkIOYL3O2Ecjs.build; exports.cleanOutputPath = _chunkIOYL3O2Ecjs.cleanOutputPath;
|
package/dist/build.js
CHANGED
|
@@ -1321,7 +1321,7 @@ var getConfigEnv = () => {
|
|
|
1321
1321
|
support: process.env[`${prefix}SUPPORT`] || void 0,
|
|
1322
1322
|
timezone: process.env[`${prefix}TIMEZONE`] || process.env.TZ || void 0,
|
|
1323
1323
|
locale: process.env[`${prefix}LOCALE`] || process.env.LOCALE || void 0,
|
|
1324
|
-
configFile: process.env[`${prefix}
|
|
1324
|
+
configFile: process.env[`${prefix}WORKSPACE_CONFIG_FILE`] ? correctPaths(process.env[`${prefix}WORKSPACE_CONFIG_FILE`]) : void 0,
|
|
1325
1325
|
workspaceRoot: process.env[`${prefix}WORKSPACE_ROOT`] ? correctPaths(process.env[`${prefix}WORKSPACE_ROOT`]) : void 0,
|
|
1326
1326
|
directories: {
|
|
1327
1327
|
cache: process.env[`${prefix}CACHE_DIR`] ? correctPaths(process.env[`${prefix}CACHE_DIR`]) : process.env[`${prefix}CACHE_DIRECTORY`] ? correctPaths(process.env[`${prefix}CACHE_DIRECTORY`]) : void 0,
|
|
@@ -1384,7 +1384,7 @@ var getConfigEnv = () => {
|
|
|
1384
1384
|
config.licensing = `${config.homepage}/docs`;
|
|
1385
1385
|
}
|
|
1386
1386
|
}
|
|
1387
|
-
const serializedConfig = process.env[`${prefix}
|
|
1387
|
+
const serializedConfig = process.env[`${prefix}WORKSPACE_CONFIG`];
|
|
1388
1388
|
if (serializedConfig) {
|
|
1389
1389
|
const parsed = JSON.parse(serializedConfig);
|
|
1390
1390
|
config = {
|
|
@@ -1616,7 +1616,9 @@ var setConfigEnv = (config) => {
|
|
|
1616
1616
|
process.env.LANG = config.locale ? `${config.locale.replaceAll("-", "_")}.UTF-8` : "en_US.UTF-8";
|
|
1617
1617
|
}
|
|
1618
1618
|
if (config.configFile) {
|
|
1619
|
-
process.env[`${prefix}
|
|
1619
|
+
process.env[`${prefix}WORKSPACE_CONFIG_FILE`] = correctPaths(
|
|
1620
|
+
config.configFile
|
|
1621
|
+
);
|
|
1620
1622
|
}
|
|
1621
1623
|
if (config.workspaceRoot) {
|
|
1622
1624
|
process.env[`${prefix}WORKSPACE_ROOT`] = correctPaths(config.workspaceRoot);
|
|
@@ -1720,7 +1722,7 @@ var setConfigEnv = (config) => {
|
|
|
1720
1722
|
config.skipConfigLogging
|
|
1721
1723
|
);
|
|
1722
1724
|
}
|
|
1723
|
-
process.env[`${prefix}
|
|
1725
|
+
process.env[`${prefix}WORKSPACE_CONFIG`] = JSON.stringify(config);
|
|
1724
1726
|
for (const key of Object.keys(config.extensions ?? {})) {
|
|
1725
1727
|
if (config.extensions[key] && Object.keys(config.extensions[key])) {
|
|
1726
1728
|
setExtensionEnv(key, config.extensions[key]);
|
|
@@ -1321,7 +1321,7 @@ var getConfigEnv = () => {
|
|
|
1321
1321
|
support: process.env[`${prefix}SUPPORT`] || void 0,
|
|
1322
1322
|
timezone: process.env[`${prefix}TIMEZONE`] || process.env.TZ || void 0,
|
|
1323
1323
|
locale: process.env[`${prefix}LOCALE`] || process.env.LOCALE || void 0,
|
|
1324
|
-
configFile: process.env[`${prefix}
|
|
1324
|
+
configFile: process.env[`${prefix}WORKSPACE_CONFIG_FILE`] ? correctPaths(process.env[`${prefix}WORKSPACE_CONFIG_FILE`]) : void 0,
|
|
1325
1325
|
workspaceRoot: process.env[`${prefix}WORKSPACE_ROOT`] ? correctPaths(process.env[`${prefix}WORKSPACE_ROOT`]) : void 0,
|
|
1326
1326
|
directories: {
|
|
1327
1327
|
cache: process.env[`${prefix}CACHE_DIR`] ? correctPaths(process.env[`${prefix}CACHE_DIR`]) : process.env[`${prefix}CACHE_DIRECTORY`] ? correctPaths(process.env[`${prefix}CACHE_DIRECTORY`]) : void 0,
|
|
@@ -1384,7 +1384,7 @@ var getConfigEnv = () => {
|
|
|
1384
1384
|
config.licensing = `${config.homepage}/docs`;
|
|
1385
1385
|
}
|
|
1386
1386
|
}
|
|
1387
|
-
const serializedConfig = process.env[`${prefix}
|
|
1387
|
+
const serializedConfig = process.env[`${prefix}WORKSPACE_CONFIG`];
|
|
1388
1388
|
if (serializedConfig) {
|
|
1389
1389
|
const parsed = JSON.parse(serializedConfig);
|
|
1390
1390
|
config = {
|
|
@@ -1616,7 +1616,9 @@ var setConfigEnv = (config) => {
|
|
|
1616
1616
|
process.env.LANG = config.locale ? `${config.locale.replaceAll("-", "_")}.UTF-8` : "en_US.UTF-8";
|
|
1617
1617
|
}
|
|
1618
1618
|
if (config.configFile) {
|
|
1619
|
-
process.env[`${prefix}
|
|
1619
|
+
process.env[`${prefix}WORKSPACE_CONFIG_FILE`] = correctPaths(
|
|
1620
|
+
config.configFile
|
|
1621
|
+
);
|
|
1620
1622
|
}
|
|
1621
1623
|
if (config.workspaceRoot) {
|
|
1622
1624
|
process.env[`${prefix}WORKSPACE_ROOT`] = correctPaths(config.workspaceRoot);
|
|
@@ -1720,7 +1722,7 @@ var setConfigEnv = (config) => {
|
|
|
1720
1722
|
config.skipConfigLogging
|
|
1721
1723
|
);
|
|
1722
1724
|
}
|
|
1723
|
-
process.env[`${prefix}
|
|
1725
|
+
process.env[`${prefix}WORKSPACE_CONFIG`] = JSON.stringify(config);
|
|
1724
1726
|
for (const key of Object.keys(_nullishCoalesce(config.extensions, () => ( {})))) {
|
|
1725
1727
|
if (config.extensions[key] && Object.keys(config.extensions[key])) {
|
|
1726
1728
|
setExtensionEnv(key, config.extensions[key]);
|
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
var
|
|
4
|
+
var _chunkIOYL3O2Ecjs = require('./chunk-IOYL3O2E.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -16,4 +16,4 @@ require('./chunk-ZBPRDZS4.cjs');
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
exports.DEFAULT_BUILD_OPTIONS = _chunk65E5RX7Icjs.DEFAULT_BUILD_OPTIONS; exports.build =
|
|
19
|
+
exports.DEFAULT_BUILD_OPTIONS = _chunk65E5RX7Icjs.DEFAULT_BUILD_OPTIONS; exports.build = _chunkIOYL3O2Ecjs.build; exports.clean = _chunkIO7MJMVEcjs.clean; exports.cleanDirectories = _chunkIO7MJMVEcjs.cleanDirectories; exports.cleanOutputPath = _chunkIOYL3O2Ecjs.cleanOutputPath;
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/tsdown",
|
|
3
|
-
"version": "0.38.
|
|
3
|
+
"version": "0.38.7",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A package containing `tsdown` utilities for building Storm Software libraries and applications",
|
|
6
6
|
"repository": {
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"dependencies": {
|
|
152
152
|
"@storm-software/build-tools": "^0.153.6",
|
|
153
153
|
"@storm-software/config": "^1.128.6",
|
|
154
|
-
"@storm-software/config-tools": "^1.180.
|
|
154
|
+
"@storm-software/config-tools": "^1.180.7",
|
|
155
155
|
"chokidar": "^4.0.3",
|
|
156
156
|
"commander": "^12.1.0",
|
|
157
157
|
"es-toolkit": "^1.39.9",
|
|
@@ -174,5 +174,5 @@
|
|
|
174
174
|
},
|
|
175
175
|
"publishConfig": { "access": "public" },
|
|
176
176
|
"sideEffects": false,
|
|
177
|
-
"gitHead": "
|
|
177
|
+
"gitHead": "4350a6d02b440c658e3bc88c00c8197914c23128"
|
|
178
178
|
}
|