Skip to content

Commit 7bf2374

Browse files
authored
fix: make $npm_execpath always point to npm
1 parent d0b7899 commit 7bf2374

File tree

6 files changed

+23
-31
lines changed

6 files changed

+23
-31
lines changed

tap-snapshots/test/lib/docs.js.test.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2354,7 +2354,7 @@ Object {
23542354
"nodeBin": "{NODE}",
23552355
"nodeVersion": "2.2.2",
23562356
"noProxy": "",
2357-
"npmBin": "{CWD}/{TESTDIR}/docs.js",
2357+
"npmBin": "{CWD}/other/bin/npm-cli.js",
23582358
"npmCommand": "version",
23592359
"npmVersion": "3.3.3",
23602360
"npxCache": "{CWD}/cache/_npx",

workspaces/config/lib/definitions/index.js

-7
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,6 @@ const flatten = (obj, flat = {}) => {
1818
flat[key] = val
1919
}
2020
}
21-
22-
// XXX make this the bin/npm-cli.js file explicitly instead
23-
// otherwise using npm programmatically is a bit of a pain.
24-
flat.npmBin = require.main ? require.main.filename
25-
: /* istanbul ignore next - not configurable property */ undefined
26-
flat.nodeBin = process.env.NODE || process.execPath
27-
2821
return flat
2922
}
3023

workspaces/config/lib/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ class Config {
115115
this.defaults = defaults
116116

117117
this.npmPath = npmPath
118+
this.npmBin = join(this.npmPath, 'bin/npm-cli.js')
118119
this.argv = argv
119120
this.env = env
120121
this.execPath = execPath
@@ -231,6 +232,8 @@ class Config {
231232
for (const { data } of this.data.values()) {
232233
this.#flatten(data, this.#flatOptions)
233234
}
235+
this.#flatOptions.nodeBin = this.execPath
236+
this.#flatOptions.npmBin = this.npmBin
234237
process.emit('timeEnd', 'config:load:flatten')
235238

236239
return this.#flatOptions

workspaces/config/lib/set-envs.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,7 @@ const setEnvs = (config) => {
101101
if (cliConf['node-options']) {
102102
env.NODE_OPTIONS = cliConf['node-options']
103103
}
104-
105-
if (require.main && require.main.filename) {
106-
env.npm_execpath = require.main.filename
107-
}
104+
env.npm_execpath = config.npmBin
108105
env.NODE = env.npm_node_execpath = config.execPath
109106
}
110107

workspaces/config/test/definitions/index.js

-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
const t = require('tap')
22
const config = require('../../lib/definitions/index.js')
33
const definitions = require('../../lib/definitions/definitions.js')
4-
const mockGlobals = require('@npmcli/mock-globals')
54

65
t.test('defaults', t => {
76
// just spot check a few of these to show that we got defaults assembled
@@ -14,10 +13,6 @@ t.test('defaults', t => {
1413
})
1514

1615
t.test('flatten', t => {
17-
// cant use mockGlobals since its not a configurable property
18-
require.main.filename = '/path/to/npm'
19-
mockGlobals(t, { process: { execPath: '/path/to/node', 'env.NODE': undefined } })
20-
2116
const obj = {
2217
'save-exact': true,
2318
'save-prefix': 'ignored',
@@ -34,12 +29,6 @@ t.test('flatten', t => {
3429
savePrefix: '',
3530
'@foobar:registry': 'https://foo.bar.com/',
3631
'//foo.bar.com:_authToken': 'foobarbazquuxasdf',
37-
npmBin: '/path/to/npm',
38-
nodeBin: '/path/to/node',
39-
})
40-
41-
mockGlobals(t, {
42-
'process.env.NODE': '/usr/local/bin/node.exe',
4332
})
4433

4534
// now flatten something else on top of it.
@@ -49,8 +38,6 @@ t.test('flatten', t => {
4938
savePrefix: '',
5039
'@foobar:registry': 'https://foo.bar.com/',
5140
'//foo.bar.com:_authToken': 'foobarbazquuxasdf',
52-
npmBin: '/path/to/npm',
53-
nodeBin: '/usr/local/bin/node.exe',
5441
})
5542

5643
t.end()

workspaces/config/test/set-envs.js

+18-6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ const globalPrefix = join(cwd, 'global')
99
const localPrefix = join(cwd, 'local')
1010
const NODE = execPath
1111

12+
const npmPath = '{path}'
13+
const npmBin = join(npmPath, 'bin/npm-cli.js')
14+
1215
const mockDefinitions = (t) => {
1316
mockGlobals(t, { 'process.env': { EDITOR: 'vim' } })
1417
const { definitions, defaults } = t.mock('../lib/definitions/index.js')
@@ -24,7 +27,7 @@ t.test('set envs that are not defaults and not already in env', t => {
2427
INIT_CWD: cwd,
2528
EDITOR: 'vim',
2629
HOME: undefined,
27-
npm_execpath: require.main.filename,
30+
npm_execpath: npmBin,
2831
npm_node_execpath: execPath,
2932
npm_config_global_prefix: globalPrefix,
3033
npm_config_local_prefix: localPrefix,
@@ -39,6 +42,8 @@ t.test('set envs that are not defaults and not already in env', t => {
3942
execPath,
4043
globalPrefix,
4144
localPrefix,
45+
npmPath,
46+
npmBin,
4247
}
4348

4449
setEnvs(config)
@@ -75,7 +80,7 @@ t.test('set envs that are not defaults and not already in env, array style', t =
7580
INIT_CWD: cwd,
7681
EDITOR: 'vim',
7782
HOME: undefined,
78-
npm_execpath: require.main.filename,
83+
npm_execpath: npmBin,
7984
npm_node_execpath: execPath,
8085
npm_config_global_prefix: globalPrefix,
8186
npm_config_local_prefix: localPrefix,
@@ -90,6 +95,8 @@ t.test('set envs that are not defaults and not already in env, array style', t =
9095
execPath,
9196
globalPrefix,
9297
localPrefix,
98+
npmPath,
99+
npmBin,
93100
}
94101
setEnvs(config)
95102
t.strictSame(env, { ...extras }, 'no new environment vars to create')
@@ -123,7 +130,7 @@ t.test('set envs that are not defaults and not already in env, boolean edition',
123130
INIT_CWD: cwd,
124131
EDITOR: 'vim',
125132
HOME: undefined,
126-
npm_execpath: require.main.filename,
133+
npm_execpath: npmBin,
127134
npm_node_execpath: execPath,
128135
npm_config_global_prefix: globalPrefix,
129136
npm_config_local_prefix: localPrefix,
@@ -138,6 +145,8 @@ t.test('set envs that are not defaults and not already in env, boolean edition',
138145
execPath,
139146
globalPrefix,
140147
localPrefix,
148+
npmPath,
149+
npmBin,
141150
}
142151
setEnvs(config)
143152
t.strictSame(env, { ...extras }, 'no new environment vars to create')
@@ -164,7 +173,7 @@ t.test('set envs that are not defaults and not already in env, boolean edition',
164173
t.end()
165174
})
166175

167-
t.test('dont set npm_execpath if require.main.filename is not set', t => {
176+
t.test('set npm_execpath even if require.main.filename is not set', t => {
168177
const { definitions, defaults } = mockDefinitions(t)
169178
const { filename } = require.main
170179
t.teardown(() => require.main.filename = filename)
@@ -182,9 +191,10 @@ t.test('dont set npm_execpath if require.main.filename is not set', t => {
182191
execPath,
183192
globalPrefix,
184193
localPrefix,
194+
npmBin,
185195
}
186196
setEnvs(config)
187-
t.equal(env.npm_execpath, undefined, 'did not set npm_execpath')
197+
t.equal(env.npm_execpath, npmBin, 'did not set npm_execpath')
188198
t.end()
189199
})
190200

@@ -197,7 +207,7 @@ t.test('dont set configs marked as envExport:false', t => {
197207
INIT_CWD: cwd,
198208
EDITOR: 'vim',
199209
HOME: undefined,
200-
npm_execpath: require.main.filename,
210+
npm_execpath: npmBin,
201211
npm_node_execpath: execPath,
202212
npm_config_global_prefix: globalPrefix,
203213
npm_config_local_prefix: localPrefix,
@@ -212,6 +222,8 @@ t.test('dont set configs marked as envExport:false', t => {
212222
execPath,
213223
globalPrefix,
214224
localPrefix,
225+
npmPath,
226+
npmBin,
215227
}
216228
setEnvs(config)
217229
t.strictSame(env, { ...extras }, 'no new environment vars to create')

0 commit comments

Comments
 (0)