inngest-cli 0.17.1 → 0.18.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/postinstall.js +0 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "inngest-cli",
3
- "version": "0.17.1",
3
+ "version": "0.18.1",
4
4
  "description": "The event-driven queue for any language.",
5
5
  "license": "SEE LICENSE IN LICENSE.md",
6
6
  "scripts": {
package/postinstall.js CHANGED
@@ -42,11 +42,6 @@ function getBinaryUrl() {
42
42
  debug({ arch, platform });
43
43
  let version = (_a = process.env.npm_package_version) === null || _a === void 0 ? void 0 : _a.trim();
44
44
  debug("npm_package_version:", version);
45
- if (platform.platform === "windows") {
46
- debug("Windows detected; pinning to v0.14.6");
47
- console.warn("Windows detected; pinning to last known working version 0.14.6");
48
- version = "0.14.6";
49
- }
50
45
  if (!version) {
51
46
  throw new Error("Could not find package version to install binary");
52
47
  }
@@ -71,10 +66,6 @@ function getArchPlatform() {
71
66
  if (!platform) {
72
67
  throw new Error(`Unsupported platform: ${process.platform}`);
73
68
  }
74
- if (platform.platform === "windows" && arch === "amd64") {
75
- debug("Old Windows x64 build; using 'x86_64' to access binary");
76
- return { arch: "x86_64", platform };
77
- }
78
69
  return { arch, platform };
79
70
  }
80
71
  function downloadBinary(url) {