@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 CHANGED
@@ -1,6 +1,6 @@
1
- 489fab9b2e6334ea206ada098598bf60a63d7930b17e646598414fda2685d0cb pippit-tool-cli-0.0.24-darwin-amd64.tar.gz
2
- da482045b41ccd8ba12291ba589a38ad4ad72dc20a1b71413d73b8c49ebe8609 pippit-tool-cli-0.0.24-darwin-arm64.tar.gz
3
- d3720a47492cc73f1118e3f8521e6344b50b5d9405185718a95de7b3df048f94 pippit-tool-cli-0.0.24-linux-amd64.tar.gz
4
- 98bab626d1f985e9a4039e93e96f089da72292e5df98f567dee387b663818d6e pippit-tool-cli-0.0.24-linux-arm64.tar.gz
5
- 81c026da8883962fa74d8f59749cb4987f85911d30cc1df12fdf9811e85d526c pippit-tool-cli-0.0.24-windows-amd64.zip
6
- cb27d671c861089bb432461d1ec3dab9dca862665f4f0b26351b78b68ae0a211 pippit-tool-cli-0.0.24-windows-arm64.zip
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pippit-dev/cli",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "Pippit CLI",
5
5
  "bin": {
6
6
  "pippit-tool-cli": "scripts/run.js"
@@ -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 {