Skip to content

v90

Compare
Choose a tag to compare
@ije ije released this 05 Aug 15:34
· 1195 commits to main since this release
  • Experimentally add Deno CLI mode, it will update the import_map.json file in the working directory:
    deno install -A -n esm -f https://esm.sh
    esm add react react-dom # add packages
    esm add react@17 react-dom@17 # add packages with specified version
    esm upgrade react react-dom # upgrade packages
    esm upgrade # upgrade all packages
    esm remove react react-dom # remove packages

    Ensure to point the import_map.json in your deno run command or the deno.json file.

  • Support /v89/*some-package@version external all pattern, do NOT use it directly, use the CLI mode instead.
  • Redirect urls with /@types/ to .d.ts files instead of build
  • Improve node service stability
  • Fix cjs __exportStar not used (close #389)
  • Fix resolve package (close #392)
  • Add workaround for prisma build
  • Upgrade deno std to 0.151.0