@nimbuslab/cli 0.13.4 → 0.13.5
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/index.js +6 -1
- package/package.json +1 -1
- package/src/commands/lola.ts +5 -0
package/dist/index.js
CHANGED
|
@@ -150,7 +150,7 @@ var require_src = __commonJS((exports, module) => {
|
|
|
150
150
|
var require_package = __commonJS((exports, module) => {
|
|
151
151
|
module.exports = {
|
|
152
152
|
name: "@nimbuslab/cli",
|
|
153
|
-
version: "0.13.
|
|
153
|
+
version: "0.13.5",
|
|
154
154
|
description: "CLI para criar projetos nimbuslab",
|
|
155
155
|
type: "module",
|
|
156
156
|
bin: {
|
|
@@ -2549,6 +2549,11 @@ function lola {
|
|
|
2549
2549
|
}
|
|
2550
2550
|
if (addedToAny) {
|
|
2551
2551
|
console.log(import_picocolors7.default.yellow(" Reinicie o PowerShell para usar o comando 'lola'"));
|
|
2552
|
+
console.log();
|
|
2553
|
+
console.log(import_picocolors7.default.yellow(" IMPORTANTE (Windows):"));
|
|
2554
|
+
console.log(import_picocolors7.default.dim(" Se o comando 'lola' nao funcionar, execute primeiro:"));
|
|
2555
|
+
console.log(import_picocolors7.default.cyan(" Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser"));
|
|
2556
|
+
console.log(import_picocolors7.default.dim(" Isso habilita execucao de scripts no PowerShell."));
|
|
2552
2557
|
} else {
|
|
2553
2558
|
console.log(import_picocolors7.default.green(" Funcao lola ja existe nos profiles do PowerShell"));
|
|
2554
2559
|
}
|
package/package.json
CHANGED
package/src/commands/lola.ts
CHANGED
|
@@ -108,6 +108,11 @@ function lola {
|
|
|
108
108
|
|
|
109
109
|
if (addedToAny) {
|
|
110
110
|
console.log(pc.yellow(" Reinicie o PowerShell para usar o comando 'lola'"))
|
|
111
|
+
console.log()
|
|
112
|
+
console.log(pc.yellow(" IMPORTANTE (Windows):"))
|
|
113
|
+
console.log(pc.dim(" Se o comando 'lola' nao funcionar, execute primeiro:"))
|
|
114
|
+
console.log(pc.cyan(" Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser"))
|
|
115
|
+
console.log(pc.dim(" Isso habilita execucao de scripts no PowerShell."))
|
|
111
116
|
} else {
|
|
112
117
|
console.log(pc.green(" Funcao lola ja existe nos profiles do PowerShell"))
|
|
113
118
|
}
|