@lsst/pik-plugin-select 0.6.3 → 0.6.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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -153,7 +153,7 @@ const switchCommand = new Command("switch").alias("sw").description("Interactive
153
153
  });
154
154
  } catch (error) {
155
155
  if (isExitPromptError(error)) {
156
- return;
156
+ process.exit(0);
157
157
  }
158
158
  throw error;
159
159
  }
@@ -175,7 +175,7 @@ const switchCommand = new Command("switch").alias("sw").description("Interactive
175
175
  });
176
176
  } catch (error) {
177
177
  if (isExitPromptError(error)) {
178
- return;
178
+ process.exit(0);
179
179
  }
180
180
  throw error;
181
181
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lsst/pik-plugin-select",
3
- "version": "0.6.3",
3
+ "version": "0.6.5",
4
4
  "description": "Config selector plugin for pik CLI",
5
5
  "type": "module",
6
6
  "license": "MIT",