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.
Files changed (2) hide show
  1. package/dist/index.js +6 -0
  2. 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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-ui",
3
- "version": "0.0.170-beta.2",
3
+ "version": "0.0.170",
4
4
  "description": "CLI for adding myOperator UI components to your project",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",