houdini-core 2.0.0-go.2 → 2.0.0-go.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "houdini-core",
3
- "version": "2.0.0-go.2",
3
+ "version": "2.0.0-go.3",
4
4
  "description": "The core GraphQL client for Houdini",
5
5
  "keywords": [
6
6
  "graphql",
@@ -21,12 +21,12 @@
21
21
  "minimatch": "^5.1.0"
22
22
  },
23
23
  "optionalDependencies": {
24
- "houdini-core-darwin-amd64": "2.0.0-go.2",
25
- "houdini-core-darwin-arm64": "2.0.0-go.2",
26
- "houdini-core-linux-amd64": "2.0.0-go.2",
27
- "houdini-core-linux-arm64": "2.0.0-go.2",
28
- "houdini-core-windows-amd64": "2.0.0-go.2",
29
- "houdini-core-windows-arm64": "2.0.0-go.2"
24
+ "houdini-core-darwin-x64": "2.0.0-go.3",
25
+ "houdini-core-darwin-arm64": "2.0.0-go.3",
26
+ "houdini-core-linux-x64": "2.0.0-go.3",
27
+ "houdini-core-linux-arm64": "2.0.0-go.3",
28
+ "houdini-core-win32-x64": "2.0.0-go.3",
29
+ "houdini-core-win32-arm64": "2.0.0-go.3"
30
30
  },
31
31
  "bin": "./shim.cjs",
32
32
  "scripts": {
package/postInstall.js CHANGED
@@ -4,7 +4,7 @@ const zlib = require('zlib')
4
4
  const https = require('https')
5
5
 
6
6
  // Adjust the version you want to install. You can also make this dynamic.
7
- const BINARY_DISTRIBUTION_VERSION = '2.0.0-go.2'
7
+ const BINARY_DISTRIBUTION_VERSION = '2.0.0-go.3'
8
8
 
9
9
  // Windows binaries end with .exe so we need to special case them.
10
10
  const binaryName = process.platform === 'win32' ? 'houdini-core.exe' : 'houdini-core'
package/shim.cjs CHANGED
@@ -5,8 +5,8 @@ function getBinaryPath() {
5
5
  const BINARY_DISTRIBUTION_PACKAGES = {
6
6
  'linux-x64': 'houdini-core-linux-x64',
7
7
  'linux-arm64': 'houdini-core-linux-arm64',
8
- 'win32-x64': 'houdini-core-windows-x64',
9
- 'win32-arm64': 'houdini-core-windows-arm64',
8
+ 'win32-x64': 'houdini-core-win32-x64',
9
+ 'win32-arm64': 'houdini-core-win32-arm64',
10
10
  'darwin-x64': 'houdini-core-darwin-x64',
11
11
  'darwin-arm64': 'houdini-core-darwin-arm64',
12
12
  }