@pnpm/engine.runtime.bun-resolver 1102.0.10 → 1102.0.11

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/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @pnpm/resolving.bun-resolver
2
2
 
3
+ ## 1102.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - Republished every package: the tarballs published by the v11.13.1 through v11.16.0 releases were missing most of their compiled files due to a packing bug [#13164](https://github.com/pnpm/pnpm/issues/13164).
8
+
9
+ - Updated dependencies:
10
+ - @pnpm/crypto.shasums-file@1100.1.4
11
+ - @pnpm/error@1100.1.0
12
+ - @pnpm/fetching.binary-fetcher@1102.0.6
13
+ - @pnpm/fetching.fetcher-base@1100.2.4
14
+ - @pnpm/fetching.types@1100.0.3
15
+ - @pnpm/resolving.npm-resolver@1102.1.8
16
+ - @pnpm/resolving.resolver-base@1100.5.4
17
+ - @pnpm/types@1101.6.0
18
+
3
19
  ## 1102.0.10
4
20
 
5
21
  ### Patch Changes
package/lib/index.d.ts ADDED
@@ -0,0 +1,15 @@
1
+ import type { FetchFromRegistry } from '@pnpm/fetching.types';
2
+ import { type NpmResolver } from '@pnpm/resolving.npm-resolver';
3
+ import type { LatestInfo, LatestQuery, ResolveOptions, ResolveResult, VariationsResolution, WantedDependency } from '@pnpm/resolving.resolver-base';
4
+ export interface BunRuntimeResolveResult extends ResolveResult {
5
+ resolution: VariationsResolution;
6
+ resolvedVia: 'github.com/oven-sh/bun';
7
+ }
8
+ export declare function resolveBunRuntime(ctx: {
9
+ fetchFromRegistry: FetchFromRegistry;
10
+ offline?: boolean;
11
+ resolveFromNpm: NpmResolver;
12
+ }, wantedDependency: WantedDependency, opts?: Partial<ResolveOptions>): Promise<BunRuntimeResolveResult | null>;
13
+ export declare function resolveLatestBunRuntime(ctx: {
14
+ resolveFromNpm: NpmResolver;
15
+ }, query: LatestQuery, opts: ResolveOptions): Promise<LatestInfo | undefined>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/engine.runtime.bun-resolver",
3
- "version": "1102.0.10",
3
+ "version": "1102.0.11",
4
4
  "description": "Resolves the Bun runtime",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -29,22 +29,22 @@
29
29
  "!*.map"
30
30
  ],
31
31
  "dependencies": {
32
- "@pnpm/crypto.shasums-file": "1100.1.3",
33
- "@pnpm/error": "1100.0.1",
34
- "@pnpm/fetching.binary-fetcher": "1102.0.5",
35
- "@pnpm/fetching.fetcher-base": "1100.2.3",
36
- "@pnpm/fetching.types": "1100.0.2",
37
- "@pnpm/resolving.npm-resolver": "1102.1.7",
38
- "@pnpm/resolving.resolver-base": "1100.5.3",
39
- "@pnpm/types": "1101.5.0",
32
+ "@pnpm/crypto.shasums-file": "1100.1.4",
33
+ "@pnpm/error": "1100.1.0",
34
+ "@pnpm/fetching.binary-fetcher": "1102.0.6",
35
+ "@pnpm/fetching.fetcher-base": "1100.2.4",
36
+ "@pnpm/fetching.types": "1100.0.3",
37
+ "@pnpm/resolving.npm-resolver": "1102.1.8",
38
+ "@pnpm/resolving.resolver-base": "1100.5.4",
39
+ "@pnpm/types": "1101.6.0",
40
40
  "@pnpm/util.lex-comparator": "^4.0.1",
41
41
  "semver": "^7.8.4"
42
42
  },
43
43
  "peerDependencies": {
44
- "@pnpm/worker": "^1100.2.6"
44
+ "@pnpm/worker": "^1100.2.7"
45
45
  },
46
46
  "devDependencies": {
47
- "@pnpm/engine.runtime.bun-resolver": "1102.0.10",
47
+ "@pnpm/engine.runtime.bun-resolver": "1102.0.11",
48
48
  "@types/semver": "7.7.1"
49
49
  },
50
50
  "engines": {