build(deps): bump rollup from 2.23.0 to 2.33.3 (#3434)

* build(deps): bump rollup from 2.23.0 to 2.33.3

Bumps [rollup](https://github.com/rollup/rollup) from 2.23.0 to 2.33.3.
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rollup/rollup/compare/v2.23.0...v2.33.3)

Signed-off-by: dependabot[bot] <support@github.com>

* fix types

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
dependabot[bot]
2020-11-26 19:30:05 +01:00
committed by GitHub
parent f76626c1c4
commit 8697dea5b4
4 changed files with 16 additions and 11 deletions
+6 -6
View File
@@ -38,11 +38,11 @@ describe('forwardFileImports', () => {
expect(plugin.name).toBe('forward-file-imports');
});
it('should call through to original external option', () => {
it('should call through to original external option', async () => {
const plugin = forwardFileImports({ include: /\.png$/ });
const external = jest.fn((id: string) => id.endsWith('external'));
const options = plugin.options?.call(context, { external })!;
const options = (await plugin.options?.call(context, { external }))!;
if (typeof options.external !== 'function') {
throw new Error('options.external is not a function');
}
@@ -70,12 +70,12 @@ describe('forwardFileImports', () => {
).toThrow('Unknown importer of file module ./my-image.png');
});
it('should handle original external array', () => {
it('should handle original external array', async () => {
const plugin = forwardFileImports({ include: /\.png$/ });
const options = plugin.options?.call(context, {
const options = (await plugin.options?.call(context, {
external: ['my-external'],
})!;
}))!;
if (typeof options.external !== 'function') {
throw new Error('options.external is not a function');
}
@@ -106,7 +106,7 @@ describe('forwardFileImports', () => {
it('should extract files', async () => {
const plugin = forwardFileImports({ include: /\.png$/ });
const options = plugin.options?.call(context, {})!;
const options = (await plugin.options?.call(context, {}))!;
if (typeof options.external !== 'function') {
throw new Error('options.external is not a function');
}