mirror of
https://github.com/denoland/deno.git
synced 2025-08-04 10:59:13 +00:00
feat: remove --unstable flag requirement for npm: specifiers (#16473)
This commit makes "npm:" specifiers not require "--unstable" flag. At the moment some APIs used by Node polyfills still require "--unstable" which will be addressed in follow up PRs.
This commit is contained in:
parent
fd32f75da9
commit
53e974b276
10 changed files with 58 additions and 152 deletions
|
@ -276,8 +276,7 @@ impl Inner {
|
|||
cache_setting,
|
||||
progress_bar,
|
||||
);
|
||||
let npm_resolver =
|
||||
NpmPackageResolver::new(npm_cache, api, true, false, None);
|
||||
let npm_resolver = NpmPackageResolver::new(npm_cache, api, false, None);
|
||||
|
||||
Self {
|
||||
assets,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue