@staff0rd/assist 0.154.1 → 0.155.0
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 +4 -3
- package/package.json +2 -1
package/dist/index.js
CHANGED
|
@@ -6,11 +6,12 @@ import { Command } from "commander";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "@staff0rd/assist",
|
|
9
|
-
version: "0.
|
|
9
|
+
version: "0.155.0",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
13
13
|
assist: "./dist/index.js",
|
|
14
|
+
a: "./dist/index.js",
|
|
14
15
|
ast: "./dist/index.js"
|
|
15
16
|
},
|
|
16
17
|
files: [
|
|
@@ -10622,12 +10623,12 @@ async function update() {
|
|
|
10622
10623
|
console.log("Building...");
|
|
10623
10624
|
execSync41("npm run build", { cwd: installDir, stdio: "inherit" });
|
|
10624
10625
|
console.log("Syncing commands...");
|
|
10625
|
-
execSync41("assist sync", { stdio: "inherit" });
|
|
10626
|
+
execSync41("assist sync --yes", { stdio: "inherit" });
|
|
10626
10627
|
} else if (isGlobalNpmInstall(installDir)) {
|
|
10627
10628
|
console.log("Detected global npm installation, updating...");
|
|
10628
10629
|
execSync41("npm i -g @staff0rd/assist@latest", { stdio: "inherit" });
|
|
10629
10630
|
console.log("Syncing commands...");
|
|
10630
|
-
execSync41("assist sync", { stdio: "inherit" });
|
|
10631
|
+
execSync41("assist sync --yes", { stdio: "inherit" });
|
|
10631
10632
|
} else {
|
|
10632
10633
|
console.error(
|
|
10633
10634
|
"Could not determine installation method. Expected a git repo or global npm install."
|
package/package.json
CHANGED