Skip to content

Commit dc755fd

Browse files
mrbbotpetebacondarwin
authored andcommittedMay 17, 2023
feature: remove delegation to locally installed versions (#3192)
Previously, if Wrangler was installed globally _and_ locally within a project, running the global Wrangler would instead invoke the local version. This behaviour was contrary to most other JavaScript CLI tools and could be quite confusing. Closes #2705 Closes DEVX-623

File tree

2 files changed

+20
-75
lines changed

2 files changed

+20
-75
lines changed
 

‎.changeset/spicy-peaches-worry.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
"wrangler": major
3+
---
4+
5+
feature: remove delegation to locally installed versions
6+
7+
Previously, if Wrangler was installed globally _and_ locally within a project,
8+
running the global Wrangler would instead invoke the local version.
9+
This behaviour was contrary to most other JavaScript CLI tools and has now been
10+
removed. We recommend you use `npx wrangler` instead, which will invoke the
11+
local version if installed, or install globally if not.

‎packages/wrangler/bin/wrangler.js

+9-75
Original file line numberDiff line numberDiff line change
@@ -79,80 +79,6 @@ Consider using a Node.js version manager such as https://volta.sh/ or https://gi
7979
});
8080
}
8181

82-
/**
83-
* Runs a locally-installed version of wrangler, delegating from this version.
84-
* @throws {MODULE_NOT_FOUND} if there isn't a locally installed version of wrangler.
85-
*/
86-
function runDelegatedWrangler() {
87-
const packageJsonPath = require.resolve("wrangler/package.json", {
88-
paths: [process.cwd()],
89-
});
90-
const {
91-
bin: { wrangler: binaryPath },
92-
version,
93-
} = JSON.parse(fs.readFileSync(packageJsonPath));
94-
const resolvedBinaryPath = path.resolve(packageJsonPath, "..", binaryPath);
95-
96-
// Make sure the user knows we're delegating to a different installation
97-
const currentPackageJsonPath = path.resolve(__dirname, "..", "package.json");
98-
const currentPackage = JSON.parse(fs.readFileSync(currentPackageJsonPath));
99-
const argv = process.argv.slice(2).join(" ");
100-
console.log(
101-
`Delegating to locally-installed wrangler@${version} over global wrangler@${currentPackage.version}...
102-
Run \`npx wrangler ${argv}\` to use the local version directly.
103-
`
104-
);
105-
106-
// this call to `spawn` is simpler because the delegated version will do all
107-
// of the other work.
108-
return spawn(
109-
process.execPath,
110-
[resolvedBinaryPath, ...process.argv.slice(2)],
111-
{
112-
stdio: ["inherit", "inherit", "inherit", "ipc"],
113-
}
114-
)
115-
.on("exit", (code) =>
116-
process.exit(code === undefined || code === null ? 0 : code)
117-
)
118-
.on("message", (message) => {
119-
if (process.send) {
120-
process.send(message);
121-
}
122-
});
123-
}
124-
125-
/**
126-
* Indicates if this invocation of `wrangler` should delegate
127-
* to a locally-installed version.
128-
*/
129-
function shouldDelegate() {
130-
try {
131-
// `require.resolve` will throw if it can't find
132-
// a locally-installed version of `wrangler`
133-
const delegatedPackageJson = require.resolve("wrangler/package.json", {
134-
paths: [process.cwd()],
135-
});
136-
const thisPackageJson = path.resolve(__dirname, "..", "package.json");
137-
// if it's the same path, then we're already a local install -- no need to delegate
138-
return thisPackageJson !== delegatedPackageJson;
139-
} catch (e) {
140-
// there's no local version to delegate to -- `require.resolve` threw
141-
return false;
142-
}
143-
}
144-
145-
async function main() {
146-
wranglerProcess = shouldDelegate() ? runDelegatedWrangler() : runWrangler();
147-
}
148-
149-
process.on("SIGINT", () => {
150-
wranglerProcess && wranglerProcess.kill();
151-
});
152-
process.on("SIGTERM", () => {
153-
wranglerProcess && wranglerProcess.kill();
154-
});
155-
15682
// semiver implementation via https://github.com/lukeed/semiver/blob/ae7eebe6053c96be63032b14fb0b68e2553fcac4/src/index.js
15783

15884
/**
@@ -185,4 +111,12 @@ function semiver(a, b, bool) {
185111

186112
// end semiver implementation
187113

188-
void main();
114+
if (module === require.main) {
115+
wranglerProcess = runWrangler();
116+
process.on("SIGINT", () => {
117+
wranglerProcess && wranglerProcess.kill();
118+
});
119+
process.on("SIGTERM", () => {
120+
wranglerProcess && wranglerProcess.kill();
121+
});
122+
}

0 commit comments

Comments
 (0)
Please sign in to comment.