@lsst/pik-core 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.
@@ -1,4 +1,4 @@
1
- import type { PikPlugin } from './types/plugin.js';
1
+ import { PikPlugin } from './types/plugin.js';
2
2
  /**
3
3
  * Base config interface - plugins extend this via declaration merging
4
4
  */
@@ -1,5 +1,4 @@
1
- import type { ParseResult } from './types/index.js';
2
- import { CommentStyle } from './types/index.js';
1
+ import { ParseResult, CommentStyle } from './types/index.js';
3
2
  /**
4
3
  * Parser for pik selectors and options in source files
5
4
  */
@@ -1,4 +1,4 @@
1
- import type { Selector } from './types/index.js';
1
+ import { Selector } from './types/index.js';
2
2
  import { Switcher } from './switcher.js';
3
3
  /**
4
4
  * Switcher that allows only one option to be active at a time
@@ -1,4 +1,4 @@
1
- import type { Selector } from './types/index.js';
1
+ import { Selector } from './types/index.js';
2
2
  import { CommentManipulator } from './comment-manipulator.js';
3
3
  /**
4
4
  * Abstract base class for switching pik options
@@ -1,4 +1,4 @@
1
- import type { Selector } from './selector.js';
1
+ import { Selector } from './selector.js';
2
2
  /**
3
3
  * Result of parsing a file or content string
4
4
  */
@@ -1,4 +1,4 @@
1
- import type { Command } from 'commander';
1
+ import { Command } from 'commander';
2
2
  /**
3
3
  * Plugin interface for pik CLI plugins.
4
4
  */
@@ -1,4 +1,4 @@
1
- import type { Option } from './option.js';
1
+ import { Option } from './option.js';
2
2
  /**
3
3
  * Represents a selector with its options
4
4
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lsst/pik-core",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "description": "Core library for parsing and switching @pik config markers",
5
5
  "type": "module",
6
6
  "license": "MIT",