Read the release notes on bud.js.org
Fix: resolved paths containing spaces
Paths resolved by bud.js’s module resolve utility had spaces replaced with %20
in the path. This replacement was being made
by import-module-resolve
’s resolve
function, which treats paths as browser-compatible URIs.
This small patch replaces %20
with
(U+0020) before returning resolved paths.
Release information
-
deps: update @swc/core to v1.2.220 (#1610) [@swc-project]
-
deps: update netlify-cli to v10.12.1 (#1612) [@netlify]
-
fix(patch): remove fn from allowed uris array (#1609) [@kellymears]
-
fix(patch): directory containing spaces (#1608) [@kellymears]
For more information review the diff to see what’s changed.