@pnpm/plugin-commands-config 1.0.24 → 1.0.26

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 { Config } from '@pnpm/config';
1
+ import { type Config } from '@pnpm/config';
2
2
  export type ConfigCommandOptions = Pick<Config, 'configDir' | 'cliOptions' | 'dir' | 'global' | 'npmPath' | 'rawConfig'> & {
3
3
  json?: boolean;
4
4
  location?: 'global' | 'project';
package/lib/config.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { ConfigCommandOptions } from './ConfigCommandOptions';
1
+ import { type ConfigCommandOptions } from './ConfigCommandOptions';
2
2
  export declare function rcOptionsTypes(): {};
3
3
  export declare function cliOptionsTypes(): {
4
4
  global: BooleanConstructor;
@@ -1,2 +1,2 @@
1
- import { ConfigCommandOptions } from './ConfigCommandOptions';
1
+ import { type ConfigCommandOptions } from './ConfigCommandOptions';
2
2
  export declare function configGet(opts: ConfigCommandOptions, key: string): any;
@@ -1,2 +1,2 @@
1
- import { ConfigCommandOptions } from './ConfigCommandOptions';
1
+ import { type ConfigCommandOptions } from './ConfigCommandOptions';
2
2
  export declare function configList(opts: ConfigCommandOptions): Promise<string>;
@@ -1,2 +1,2 @@
1
- import { ConfigCommandOptions } from './ConfigCommandOptions';
1
+ import { type ConfigCommandOptions } from './ConfigCommandOptions';
2
2
  export declare function configSet(opts: ConfigCommandOptions, key: string, value: string | null): Promise<void>;
package/lib/get.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as configCmd from './config';
2
- import { ConfigCommandOptions } from './ConfigCommandOptions';
2
+ import { type ConfigCommandOptions } from './ConfigCommandOptions';
3
3
  export declare const rcOptionsTypes: typeof configCmd.rcOptionsTypes;
4
4
  export declare const cliOptionsTypes: typeof configCmd.cliOptionsTypes;
5
5
  export declare const help: typeof configCmd.help;
package/lib/set.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as configCmd from './config';
2
- import { ConfigCommandOptions } from './ConfigCommandOptions';
2
+ import { type ConfigCommandOptions } from './ConfigCommandOptions';
3
3
  export declare const rcOptionsTypes: typeof configCmd.rcOptionsTypes;
4
4
  export declare const cliOptionsTypes: typeof configCmd.cliOptionsTypes;
5
5
  export declare const help: typeof configCmd.help;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/plugin-commands-config",
3
- "version": "1.0.24",
3
+ "version": "1.0.26",
4
4
  "description": "Commands for reading and writing settings to/from config files",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -28,8 +28,8 @@
28
28
  "render-help": "^1.0.3",
29
29
  "sort-keys": "^4.2.0",
30
30
  "write-ini-file": "4.0.1",
31
- "@pnpm/cli-utils": "1.1.6",
32
- "@pnpm/config": "17.0.1",
31
+ "@pnpm/cli-utils": "1.1.8",
32
+ "@pnpm/config": "17.0.3",
33
33
  "@pnpm/error": "4.0.1",
34
34
  "@pnpm/run-npm": "5.0.0"
35
35
  },
@@ -37,7 +37,7 @@
37
37
  "devDependencies": {
38
38
  "@pnpm/logger": "^5.0.0",
39
39
  "@types/ini": "1.3.31",
40
- "@pnpm/plugin-commands-config": "1.0.24",
40
+ "@pnpm/plugin-commands-config": "1.0.26",
41
41
  "@pnpm/prepare": "0.0.64"
42
42
  },
43
43
  "exports": {