create-bl-theme 1.0.0 → 1.0.1
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/bin/cli.js +6 -2
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -208,12 +208,16 @@ MIT
|
|
|
208
208
|
if (response.hasShaders) {
|
|
209
209
|
console.log(` ${pc.dim("4.")} Configure ${pc.cyan("shader.json")} for shader effects`);
|
|
210
210
|
}
|
|
211
|
+
const submitStep = response.hasShaders ? "5." : "4.";
|
|
211
212
|
console.log(
|
|
212
|
-
` ${pc.dim(
|
|
213
|
+
` ${pc.dim(submitStep)} Push to GitHub and submit to the theme store`
|
|
214
|
+
);
|
|
215
|
+
console.log(
|
|
216
|
+
` ${pc.dim("https://github.com/boidushya/better-lyrics-themes")}`
|
|
213
217
|
);
|
|
214
218
|
console.log();
|
|
215
219
|
console.log(
|
|
216
|
-
pc.dim(" Validate your theme with: ") + pc.cyan(`create-bl-theme validate ${dir}`)
|
|
220
|
+
pc.dim(" Validate your theme with: ") + pc.cyan(`npx create-bl-theme validate ${dir}`)
|
|
217
221
|
);
|
|
218
222
|
console.log();
|
|
219
223
|
}
|