@storm-software/workspace-tools 1.129.2 → 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 CHANGED
@@ -1,3 +1,19 @@
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
+
10
+ ## 1.130.0 (2024-07-28)
11
+
12
+
13
+ ### Features
14
+
15
+ - **build-tools:** Added `formatPackageJson` functionality to unbuild ([6da1a518](https://github.com/storm-software/storm-ops/commit/6da1a518))
16
+
1
17
  ## 1.129.2 (2024-07-28)
2
18
 
3
19
 
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")("> ")} ${_chalk.bold.bgHex(colors.warning ?? "#e3b341").whiteBright(
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
  `