@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.
- package/dist/actions/sync.js +2 -2
- package/package.json +1 -1
- package/src/actions/sync.ts +6 -4
package/dist/actions/sync.js
CHANGED
|
@@ -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
package/src/actions/sync.ts
CHANGED
|
@@ -440,10 +440,12 @@ export async function sync(
|
|
|
440
440
|
|
|
441
441
|
if (!opts.quiet && externalCssImports.size > 0) {
|
|
442
442
|
logger.info(
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
.
|
|
446
|
-
|
|
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
|
|