@pippit-dev/cli 0.0.24 → 0.0.25
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 -6
- package/package.json +1 -1
- package/scripts/install.js +3 -1
package/checksums.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
b962c9bb2ce808ab57ed4cb7ea08f35f7ac407e92d1bab0c60c124e333df3882 pippit-tool-cli-0.0.25-darwin-amd64.tar.gz
|
|
2
|
+
f99080aa1a7e5efbb46f86f21b677ca954e542ecd6722198d0f371d1d901410e pippit-tool-cli-0.0.25-darwin-arm64.tar.gz
|
|
3
|
+
ae8f76ed27eb3d9af19d083526d8da53ed43a515e61eb497932af6eef77e91b6 pippit-tool-cli-0.0.25-linux-amd64.tar.gz
|
|
4
|
+
621b466278ca3be564cf996cfc884e4e1976f9e19227c2fa99c0a364a19c7087 pippit-tool-cli-0.0.25-linux-arm64.tar.gz
|
|
5
|
+
1d44b6a9a3f6f785d00e65693038119203d21b391c77733d84f6172846713252 pippit-tool-cli-0.0.25-windows-amd64.zip
|
|
6
|
+
e978f14a65d6da4714fa9589c2e616ef42c68bc99031156bc86c1071606c244d pippit-tool-cli-0.0.25-windows-arm64.zip
|
package/package.json
CHANGED
package/scripts/install.js
CHANGED
|
@@ -5,7 +5,7 @@ const fs = require("fs");
|
|
|
5
5
|
const os = require("os");
|
|
6
6
|
const path = require("path");
|
|
7
7
|
const { isWindows, run } = require("./platform");
|
|
8
|
-
const { installSkillsFromRoot } = require("./skills");
|
|
8
|
+
const { cleanupLegacyGlobalSkills, installSkillsFromRoot } = require("./skills");
|
|
9
9
|
|
|
10
10
|
const VERSION = require("../package.json").version.replace(/-.*$/, "");
|
|
11
11
|
const REPO = "Pippit-dev/cli";
|
|
@@ -134,6 +134,8 @@ function install() {
|
|
|
134
134
|
|
|
135
135
|
if (process.env.PIPPIT_CLI_SKIP_SKILLS !== "1") {
|
|
136
136
|
installSkillsFromRoot(ROOT);
|
|
137
|
+
} else {
|
|
138
|
+
cleanupLegacyGlobalSkills();
|
|
137
139
|
}
|
|
138
140
|
console.log(`${NAME} v${VERSION} installed successfully`);
|
|
139
141
|
} finally {
|