@@ -79,80 +79,6 @@ Consider using a Node.js version manager such as https://volta.sh/ or https://gi
79
79
} ) ;
80
80
}
81
81
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
-
156
82
// semiver implementation via https://github.com/lukeed/semiver/blob/ae7eebe6053c96be63032b14fb0b68e2553fcac4/src/index.js
157
83
158
84
/**
@@ -185,4 +111,12 @@ function semiver(a, b, bool) {
185
111
186
112
// end semiver implementation
187
113
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