@pippit-dev/cli 0.0.3 → 0.0.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/checksums.txt +6 -0
- package/package.json +1 -1
- package/scripts/install-wizard.js +5 -2
package/checksums.txt
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
8afee21204eb10b435b6ae93762af02e7a7d8c2fb2e4a7f0b613dc7b56d23d99 pippit-cli-0.0.5-darwin-amd64.tar.gz
|
|
2
|
+
dfe02e27e30eaffe5ef7be9f3b914684a87ca72b809e635ff8c3c9f599f0aaa7 pippit-cli-0.0.5-darwin-arm64.tar.gz
|
|
3
|
+
0b73c06d98bf696cc3bae73381c50185c0c63a9db707a4f81adba4088452cbef pippit-cli-0.0.5-linux-amd64.tar.gz
|
|
4
|
+
de2f89ef9124b64b5cee3bfa88cb7c0f110faefeed04517922861ccd42d641b2 pippit-cli-0.0.5-linux-arm64.tar.gz
|
|
5
|
+
ab4a79448c29be1f129abc8f82007fb25dd636e6b9f25d13f7085826f86f48ef pippit-cli-0.0.5-windows-amd64.zip
|
|
6
|
+
8599eb109ad4b5a1e844e5475e02fc2ddd4d91057cf94f164570ac632cbaa43a pippit-cli-0.0.5-windows-arm64.zip
|
package/package.json
CHANGED
|
@@ -39,11 +39,14 @@ function whichPippitCli() {
|
|
|
39
39
|
function main() {
|
|
40
40
|
const installed = getGloballyInstalledVersion();
|
|
41
41
|
if (installed) {
|
|
42
|
-
console.log(`pippit-cli
|
|
42
|
+
console.log(`Updating global pippit-cli (${installed}) via ${PKG}...`);
|
|
43
43
|
} else {
|
|
44
44
|
console.log(`Installing ${PKG} globally...`);
|
|
45
|
-
run("npm", ["install", "-g", PKG], { timeout: 120000 });
|
|
46
45
|
}
|
|
46
|
+
run("npm", ["install", "-g", PKG], {
|
|
47
|
+
timeout: 120000,
|
|
48
|
+
env: { ...process.env, PIPPIT_CLI_SKIP_SKILLS: "1" },
|
|
49
|
+
});
|
|
47
50
|
|
|
48
51
|
console.log("Installing pippit-cli skills...");
|
|
49
52
|
try {
|