@plasmicapp/cli 0.1.179 → 0.1.180

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.
@@ -269,10 +269,10 @@ function sync(opts, metadataDefaults) {
269
269
  }));
270
270
  yield checkExternalPkgs(context, baseDir, opts, Array.from(externalNpmPackages.keys()));
271
271
  if (!opts.quiet && externalCssImports.size > 0) {
272
- deps_1.logger.info(`This project uses external packages and styles. Make sure to import the following global CSS: ` +
272
+ deps_1.logger.info(chalk_1.default.cyanBright.bold(`IMPORTANT: This project uses external packages and styles. Make sure to import the following global CSS: ` +
273
273
  Array.from(externalCssImports.keys())
274
274
  .map((stmt) => `"${stmt}"`)
275
- .join(", "));
275
+ .join(", ")));
276
276
  }
277
277
  // Post-sync commands
278
278
  if (!opts.ignorePostSync) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@plasmicapp/cli",
3
- "version": "0.1.179",
3
+ "version": "0.1.180",
4
4
  "description": "plasmic cli for syncing local code with Plasmic designs",
5
5
  "engines": {
6
6
  "node": ">=12"
@@ -440,10 +440,12 @@ export async function sync(
440
440
 
441
441
  if (!opts.quiet && externalCssImports.size > 0) {
442
442
  logger.info(
443
- `This project uses external packages and styles. Make sure to import the following global CSS: ` +
444
- Array.from(externalCssImports.keys())
445
- .map((stmt) => `"${stmt}"`)
446
- .join(", ")
443
+ chalk.cyanBright.bold(
444
+ `IMPORTANT: This project uses external packages and styles. Make sure to import the following global CSS: ` +
445
+ Array.from(externalCssImports.keys())
446
+ .map((stmt) => `"${stmt}"`)
447
+ .join(", ")
448
+ )
447
449
  );
448
450
  }
449
451