@storm-software/workspace-tools 1.130.0 → 1.131.0
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 +9 -0
- package/index.js +2 -2
- package/meta.json +1 -1
- package/package.json +1 -1
- package/packages/build-tools/src/config/get-unbuild-config.d.ts +2 -2
- package/packages/build-tools/src/types.d.ts +2 -1
- package/packages/config-tools/src/utilities/logger.d.ts +1 -1
- package/src/base/index.js +2 -2
- package/src/executors/clean-package/executor.js +2 -2
- package/src/executors/rolldown/executor.js +2 -2
- package/src/executors/size-limit/executor.js +2 -2
- package/src/executors/tsup/executor.js +2 -2
- package/src/executors/tsup-browser/executor.js +2 -2
- package/src/executors/tsup-neutral/executor.js +2 -2
- package/src/executors/tsup-node/executor.js +2 -2
- package/src/executors/typia/executor.js +2 -2
- package/src/executors/unbuild/executor.js +2 -2
- package/src/executors/unbuild/schema.json +13 -0
- package/src/generators/browser-library/generator.js +2 -2
- package/src/generators/config-schema/generator.js +2 -2
- package/src/generators/neutral-library/generator.js +2 -2
- package/src/generators/node-library/generator.js +2 -2
- package/src/generators/preset/generator.js +2 -2
- package/src/generators/release-version/generator.js +2 -2
- package/src/utils/index.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 1.131.0 (2024-07-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
- **build-tools:** Added code to include TypeScript lib declarations in bundle ([689e8a47](https://github.com/storm-software/storm-ops/commit/689e8a47))
|
|
7
|
+
|
|
8
|
+
- **build-tools:** Added the `generatePackageJson` functionality for unbuild ([218c72d4](https://github.com/storm-software/storm-ops/commit/218c72d4))
|
|
9
|
+
|
|
1
10
|
## 1.130.0 (2024-07-28)
|
|
2
11
|
|
|
3
12
|
|
package/index.js
CHANGED
|
@@ -67244,9 +67244,9 @@ var getLogFn, writeFatal, writeError, writeWarning, writeInfo, writeSuccess, wri
|
|
|
67244
67244
|
var init_logger = __esm({
|
|
67245
67245
|
"packages/config-tools/src/utilities/logger.ts"() {
|
|
67246
67246
|
init_types2();
|
|
67247
|
-
init_get_log_level();
|
|
67248
67247
|
init_chalk();
|
|
67249
67248
|
init_get_default_config();
|
|
67249
|
+
init_get_log_level();
|
|
67250
67250
|
getLogFn = (logLevel = LogLevel.INFO, config = {}) => {
|
|
67251
67251
|
let _chalk = getChalk();
|
|
67252
67252
|
const colors = !config.colors?.dark && !config.colors?.["base"] && !config.colors?.["base"]?.dark ? DEFAULT_COLOR_CONFIG : config.colors?.dark && typeof config.colors.dark === "string" ? config.colors : config.colors?.["base"]?.dark && typeof config.colors["base"].dark === "string" ? config.colors["base"].dark : config.colors?.["base"] ? config.colors?.["base"] : DEFAULT_COLOR_CONFIG;
|
|
@@ -67281,7 +67281,7 @@ ${_chalk.bold.hex(colors.error ?? "#f85149")(">")} ${_chalk.bold.bgHex(colors.er
|
|
|
67281
67281
|
return (message) => {
|
|
67282
67282
|
console.warn(
|
|
67283
67283
|
`
|
|
67284
|
-
${_chalk.bold.hex(colors.warning ?? "#e3b341")(">
|
|
67284
|
+
${_chalk.bold.hex(colors.warning ?? "#e3b341")(">")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
|
|
67285
67285
|
" \u26A0 Warn "
|
|
67286
67286
|
)} ${_chalk.hex(colors.warning ?? "#e3b341")(formatLogMessage(message))}
|
|
67287
67287
|
`
|