@pnpm/store-connection-manager 5.1.1 → 5.1.3

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,7 +1,7 @@
1
1
  import { ClientOptions } from '@pnpm/client';
2
2
  import { Config } from '@pnpm/config';
3
- declare type CreateResolverOptions = Pick<Config, 'fetchRetries' | 'fetchRetryFactor' | 'fetchRetryMaxtimeout' | 'fetchRetryMintimeout' | 'offline' | 'rawConfig' | 'verifyStoreIntegrity'> & Required<Pick<Config, 'cacheDir' | 'storeDir'>>;
4
- export declare type CreateNewStoreControllerOptions = CreateResolverOptions & Pick<Config, 'ca' | 'cert' | 'engineStrict' | 'force' | 'nodeVersion' | 'fetchTimeout' | 'gitShallowHosts' | 'hooks' | 'httpProxy' | 'httpsProxy' | 'key' | 'localAddress' | 'maxSockets' | 'networkConcurrency' | 'noProxy' | 'offline' | 'packageImportMethod' | 'preferOffline' | 'registry' | 'registrySupportsTimeField' | 'resolutionMode' | 'strictSsl' | 'userAgent' | 'verifyStoreIntegrity'> & {
3
+ type CreateResolverOptions = Pick<Config, 'fetchRetries' | 'fetchRetryFactor' | 'fetchRetryMaxtimeout' | 'fetchRetryMintimeout' | 'offline' | 'rawConfig' | 'verifyStoreIntegrity'> & Required<Pick<Config, 'cacheDir' | 'storeDir'>>;
4
+ export type CreateNewStoreControllerOptions = CreateResolverOptions & Pick<Config, 'ca' | 'cert' | 'engineStrict' | 'force' | 'nodeVersion' | 'fetchTimeout' | 'gitShallowHosts' | 'hooks' | 'httpProxy' | 'httpsProxy' | 'key' | 'localAddress' | 'maxSockets' | 'networkConcurrency' | 'noProxy' | 'offline' | 'packageImportMethod' | 'preferOffline' | 'registry' | 'registrySupportsTimeField' | 'resolutionMode' | 'strictSsl' | 'userAgent' | 'verifyStoreIntegrity'> & {
5
5
  ignoreFile?: (filename: string) => boolean;
6
6
  } & Partial<Pick<Config, 'userConfig'>> & Pick<ClientOptions, 'resolveSymlinksInInjectedDirs'>;
7
7
  export declare function createNewStoreController(opts: CreateNewStoreControllerOptions): Promise<{
package/lib/index.d.ts CHANGED
@@ -3,7 +3,7 @@ import { StoreController } from '@pnpm/package-store';
3
3
  import { createNewStoreController, CreateNewStoreControllerOptions } from './createNewStoreController';
4
4
  import { serverConnectionInfoDir } from './serverConnectionInfoDir';
5
5
  export { createNewStoreController, serverConnectionInfoDir };
6
- export declare type CreateStoreControllerOptions = Omit<CreateNewStoreControllerOptions, 'storeDir'> & Pick<Config, 'storeDir' | 'dir' | 'pnpmHomeDir' | 'useRunningStoreServer' | 'useStoreServer' | 'workspaceDir'>;
6
+ export type CreateStoreControllerOptions = Omit<CreateNewStoreControllerOptions, 'storeDir'> & Pick<Config, 'storeDir' | 'dir' | 'pnpmHomeDir' | 'useRunningStoreServer' | 'useStoreServer' | 'workspaceDir'>;
7
7
  export declare function createOrConnectStoreControllerCached(storeControllerCache: Map<string, Promise<{
8
8
  ctrl: StoreController;
9
9
  dir: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/store-connection-manager",
3
- "version": "5.1.1",
3
+ "version": "5.1.3",
4
4
  "description": "Create a direct pnpm store controller or connect to a running store server",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "engines": {
12
12
  "node": ">=14.6"
13
13
  },
14
- "repository": "https://github.com/pnpm/pnpm/blob/main/packages/store-connection-manager",
14
+ "repository": "https://github.com/pnpm/pnpm/blob/main/store/store-connection-manager",
15
15
  "keywords": [
16
16
  "pnpm7",
17
17
  "pnpm"
@@ -20,21 +20,21 @@
20
20
  "bugs": {
21
21
  "url": "https://github.com/pnpm/pnpm/issues"
22
22
  },
23
- "homepage": "https://github.com/pnpm/pnpm/blob/main/packages/store-connection-manager#readme",
23
+ "homepage": "https://github.com/pnpm/pnpm/blob/main/store/store-connection-manager#readme",
24
24
  "devDependencies": {
25
- "@pnpm/store-connection-manager": "5.1.1"
25
+ "@pnpm/store-connection-manager": "5.1.3"
26
26
  },
27
27
  "dependencies": {
28
+ "@zkochan/diable": "^1.0.2",
29
+ "delay": "^5.0.0",
30
+ "dir-is-case-sensitive": "^2.0.0",
28
31
  "@pnpm/cli-meta": "4.0.2",
29
- "@pnpm/client": "8.1.0",
30
- "@pnpm/config": "16.1.2",
32
+ "@pnpm/client": "8.1.1",
33
+ "@pnpm/config": "16.1.4",
31
34
  "@pnpm/error": "4.0.0",
32
35
  "@pnpm/package-store": "15.0.2",
33
36
  "@pnpm/server": "14.0.3",
34
- "@pnpm/store-path": "7.0.0",
35
- "@zkochan/diable": "^1.0.2",
36
- "delay": "^5.0.0",
37
- "dir-is-case-sensitive": "^2.0.0"
37
+ "@pnpm/store-path": "7.0.0"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "@pnpm/logger": "^5.0.0"