Comparing version 1.0.16 to 1.0.17
12
index.js
@@ -54,6 +54,6 @@ #!/usr/bin/env node | ||
const dropDir = path.join(process.cwd(), controlName); | ||
console.log(`[🛠️] Creating ${controlName}...`); | ||
console.log(`🛠️ Creating ${controlName}...`); | ||
await createFromTemplate(templateDir, dropDir); | ||
console.log(`[⚡] Done`); | ||
console.log(`[🎬] ${chalk.greenBright(`cd ${controlName}`)} then ${chalk.greenBright(`pcf start`)} to get started`); | ||
console.log(`⚡ Done`); | ||
console.log(`🎬 ${chalk.greenBright(`cd ${controlName}`)} then ${chalk.greenBright(`pcf start`)} to get started`); | ||
return; | ||
@@ -72,6 +72,6 @@ }; | ||
const targetZipLocation = path.resolve(process.cwd(), '../solution.zip'); | ||
console.log(`[🛠️] Creating solution package...`); | ||
console.log(`🛠️ Creating solution package...`); | ||
publishAsZip(process.cwd(), targetZipLocation); | ||
console.log(`[⚡] Done`); | ||
console.log(`[🎁] Your control is packaged as ${chalk.greenBright(targetZipLocation)}`); | ||
console.log(`⚡ Done`); | ||
console.log(`🎁 Your control is packaged as ${chalk.greenBright(targetZipLocation)}`); | ||
} | ||
@@ -78,0 +78,0 @@ })(); |
{ | ||
"name": "pcf", | ||
"version": "1.0.16", | ||
"version": "1.0.17", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
909901