All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
- Updated
@types/babel__generator
so we could remove the local declarations for missing GeneratorOptions.
- Fixed an issue with module resolution of specifiers inside of HTML files being served from server root route.
- Added support for Windows paths (thanks, @andrewiggins)
- Fixed issue where syntax errors encountered in files would result in an empty response.
- Fixed issue where
nodeResolve()
did not properly effect the level of the providedlogger
where individual specifier transform logging was concerned. - Fix
Module '@babel/generator' resolves to an untyped module
error for TypeScript users. - Fix issue where html/head/body tags were stripped out by default parser/serializer.
- Added
logLevel
option which defaults towarn
so info/debug transformations are supressed by default. - Added
dynamicImport
,importMeta
,exportDefaultFrom
andexportNamespaceFrom
to default Babel parser configuration. - Added single-quoted strings,
retainFunctionParens
andretainLines
to default Babel generator configuration.
- Fix missing
@types/parse5
dependency for TypeScript users. - Fix invalid TypeScript typings related to the logger option.
- Rewrites resolvable Node package specifiers in JavaScript module files.
- Rewrites resolvable Node package specifiers in HTML files in
<script type="module">
elements, honoring<base href>
where present.