myoperator-ui 0.0.170-beta.2 → 0.0.170
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/index.js +6 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11970,6 +11970,9 @@ async function sync(options) {
|
|
|
11970
11970
|
}
|
|
11971
11971
|
await fs6.writeFile(configPath, configContent);
|
|
11972
11972
|
console.log(chalk5.green(` \u2713 Updated ${candidate} (${missingTokens.length} new color token${missingTokens.length === 1 ? "" : "s"} added)
|
|
11973
|
+
`));
|
|
11974
|
+
} else {
|
|
11975
|
+
console.log(chalk5.gray(` \u2713 ${candidate} color tokens up to date
|
|
11973
11976
|
`));
|
|
11974
11977
|
}
|
|
11975
11978
|
break;
|
|
@@ -11987,6 +11990,9 @@ async function sync(options) {
|
|
|
11987
11990
|
if (missingVars.length > 0) {
|
|
11988
11991
|
await fs6.writeFile(themeFilePath, MYOPERATOR_THEME_CSS);
|
|
11989
11992
|
console.log(chalk5.green(` \u2713 Updated src/lib/myoperator-ui-theme.css (${missingVars.length} new token${missingVars.length === 1 ? "" : "s"} added)
|
|
11993
|
+
`));
|
|
11994
|
+
} else {
|
|
11995
|
+
console.log(chalk5.gray(` \u2713 src/lib/myoperator-ui-theme.css tokens up to date
|
|
11990
11996
|
`));
|
|
11991
11997
|
}
|
|
11992
11998
|
}
|