mirror of
https://github.com/denoland/deno.git
synced 2025-02-08 07:16:56 -05:00
![Marvin Hagemeister](/assets/img/avatar_default.png)
We weren't passing the resolved npmrc settings to the install commands. This lead us to always fall back to the default registry url instead of using the one from npmrc. Fixes https://github.com/denoland/deno/issues/26139 Fixes https://github.com/denoland/deno/issues/26033 Fixes https://github.com/denoland/deno/issues/25924 Fixes https://github.com/denoland/deno/issues/25822 Fixes https://github.com/denoland/deno/issues/26152 --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
23 lines
455 B
JSON
23 lines
455 B
JSON
{
|
|
"tempDir": true,
|
|
"tests": {
|
|
"deno_install_arg": {
|
|
"steps": [{
|
|
"args": "install npm:@denotest3/basic",
|
|
"output": "install.out"
|
|
}, {
|
|
"args": "run -A main.js",
|
|
"output": "main.out"
|
|
}]
|
|
},
|
|
"deno_add_arg": {
|
|
"steps": [{
|
|
"args": "add npm:@denotest3/basic",
|
|
"output": "add.out"
|
|
}, {
|
|
"args": "run -A main.js",
|
|
"output": "main.out"
|
|
}]
|
|
}
|
|
}
|
|
}
|