@storm-software/workspace-tools 1.49.9 → 1.49.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 +2 -0
- package/index.js +8 -5
- package/meta.json +1 -1
- package/package.json +1 -1
- package/src/base/index.js +8 -5
- package/src/executors/design-tokens/executor.js +8 -5
- package/src/executors/tsup/executor.js +8 -5
- package/src/executors/tsup-browser/executor.js +8 -5
- package/src/executors/tsup-neutral/executor.js +8 -5
- package/src/executors/tsup-node/executor.js +8 -5
- package/src/executors/typia/executor.js +8 -5
- package/src/generators/browser-library/generator.js +8 -5
- package/src/generators/config-schema/generator.js +8 -5
- package/src/generators/neutral-library/generator.js +8 -5
- package/src/generators/node-library/generator.js +8 -5
- package/src/generators/preset/generator.js +8 -5
package/index.js
CHANGED
|
@@ -130985,7 +130985,7 @@ ${chalk.bold.hex(config?.colors?.info ? config.colors.info : "#0ea5e9")(">")} ${
|
|
|
130985
130985
|
return (message) => {
|
|
130986
130986
|
console.info(
|
|
130987
130987
|
`
|
|
130988
|
-
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \
|
|
130988
|
+
${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">")} ${chalk.bold.bgHex(config?.colors?.success ? config.colors.success : "#087f5b").white(" \u2713 Success ")} ${chalk.hex(
|
|
130989
130989
|
config?.colors?.success ? config.colors.success : "#087f5b"
|
|
130990
130990
|
)(message)}
|
|
130991
130991
|
`
|
|
@@ -130996,7 +130996,7 @@ ${chalk.bold.hex(config?.colors?.success ? config.colors.success : "#087f5b")(">
|
|
|
130996
130996
|
return (message) => {
|
|
130997
130997
|
console.debug(
|
|
130998
130998
|
`
|
|
130999
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
130999
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u{1F6E0} Debug ")} ${chalk.hex(
|
|
131000
131000
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
131001
131001
|
)(message)}
|
|
131002
131002
|
`
|
|
@@ -131006,7 +131006,7 @@ ${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">
|
|
|
131006
131006
|
return (message) => {
|
|
131007
131007
|
console.log(
|
|
131008
131008
|
`
|
|
131009
|
-
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white("
|
|
131009
|
+
${chalk.bold.hex(config?.colors?.primary ? config.colors.primary : "#1fb2a6")(">")} ${chalk.bold.bgHex(config?.colors?.primary ? config.colors.primary : "#1fb2a6").white(" \u2709 System ")} ${chalk.hex(
|
|
131010
131010
|
config?.colors?.primary ? config.colors.primary : "#1fb2a6"
|
|
131011
131011
|
)(message)}
|
|
131012
131012
|
`
|
|
@@ -131026,9 +131026,12 @@ var getStopwatch = (name) => {
|
|
|
131026
131026
|
const end = process.hrtime(start);
|
|
131027
131027
|
console.info(
|
|
131028
131028
|
chalk.dim(
|
|
131029
|
-
|
|
131029
|
+
`
|
|
131030
|
+
\u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(
|
|
131030
131031
|
end[0] * 1e3 + end[1] / 1e6
|
|
131031
|
-
)}ms to complete
|
|
131032
|
+
)}ms to complete
|
|
131033
|
+
|
|
131034
|
+
`
|
|
131032
131035
|
)
|
|
131033
131036
|
);
|
|
131034
131037
|
};
|