Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tests: Alias react to preact/compat #2946

Merged
merged 2 commits into from Jan 20, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions karma.conf.js
Expand Up @@ -138,6 +138,14 @@ function createEsbuildPlugin() {
};
});

build.onResolve({ filter: /^(react|react-dom)$/ }, args => {
const pkg = alias['preact/compat'];
return {
path: pkg,
namespace: 'preact'
};
});

// Apply babel pass whenever we load a .js file
build.onLoad({ filter: /\.js$/ }, async args => {
const contents = await fs.readFile(args.path, 'utf-8');
Expand Down