@staff0rd/assist 0.207.0 → 0.207.1

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.
@@ -1,5 +1,4 @@
1
1
  {
2
- "autoUpdatesChannel": "stable",
3
2
  "statusLine": {
4
3
  "type": "command",
5
4
  "command": "assist status-line"
package/dist/index.js CHANGED
@@ -6,7 +6,7 @@ import { Command } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@staff0rd/assist",
9
- version: "0.207.0",
9
+ version: "0.207.1",
10
10
  type: "module",
11
11
  main: "dist/index.js",
12
12
  bin: {
@@ -13158,7 +13158,9 @@ Run \`assist run ${name} $ARGUMENTS 2>&1\`.
13158
13158
  function add3() {
13159
13159
  const { name, command, args, cwd } = requireParsedArgs();
13160
13160
  saveNewRunConfig(name, command, args, cwd);
13161
- createCommandFile(name);
13161
+ if (!name.startsWith("verify:")) {
13162
+ createCommandFile(name);
13163
+ }
13162
13164
  console.log(
13163
13165
  `Added run configuration: ${name} -> ${formatDisplay(command, args)}`
13164
13166
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@staff0rd/assist",
3
- "version": "0.207.0",
3
+ "version": "0.207.1",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "bin": {