pdf.js/external/builder/fixtures_babel/importalias-expected.js
Tim van der Meij 78bf5287d1
Update dependencies to the most recent versions
Note that the new version of `eslint-plugin-import` contains support
for ESLint 9.

Moreover, the new version of Babel removed the leading space for import
comments (see https://github.com/babel/babel/pull/16780), so we update
the corresponding test expectation to match this.

Fixes a part of #17928.
2024-10-06 12:43:07 +02:00

5 lines
162 B
JavaScript

import { Test } from "import-name";
import { Test2 } from './non-alias';
export { Test3 } from "import-name";
await import(/*webpackIgnore: true*/"./non-alias");