@lsst/pik-plugin-select 0.6.2 → 0.6.4

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 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
  }
@@ -1,4 +1,3 @@
1
1
  import { Command } from 'commander';
2
- import '../types.js';
3
2
  export declare const listCommand: Command;
4
3
  //# sourceMappingURL=list.d.ts.map
@@ -1,4 +1,3 @@
1
1
  import { Command } from 'commander';
2
- import '../types.js';
3
2
  export declare const setCommand: Command;
4
3
  //# sourceMappingURL=set.d.ts.map
@@ -1,4 +1,3 @@
1
1
  import { Command } from 'commander';
2
- import '../types.js';
3
2
  export declare const switchCommand: Command;
4
3
  //# sourceMappingURL=switch.d.ts.map
@@ -1,3 +1,3 @@
1
- import type { PikPlugin } from '@lsst/pik-core';
1
+ import { PikPlugin } from '@lsst/pik-core';
2
2
  export declare const selectPlugin: PikPlugin;
3
3
  //# sourceMappingURL=plugin.d.ts.map
@@ -1,5 +1,5 @@
1
- import { type Selector } from '@lsst/pik-core';
2
- import type { SelectConfig } from './types.js';
1
+ import { Selector } from '@lsst/pik-core';
2
+ import { SelectConfig } from './types.js';
3
3
  export interface FileResult {
4
4
  path: string;
5
5
  selectors: Selector[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lsst/pik-plugin-select",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "description": "Config selector plugin for pik CLI",
5
5
  "type": "module",
6
6
  "license": "MIT",