Skip to content

Commit

Permalink
fix: Ensure compatibility with older systems
Browse files Browse the repository at this point in the history
We need to keep the old grider tests running.

This should have both has the correct coverage and the older
compatibility support.
  • Loading branch information
manthey committed Nov 7, 2023
1 parent d817607 commit ae62dc3
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions webpack.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,11 @@ module.exports = {
module: {
rules: [{
test: /\.js$/,
include: [
path.resolve('src'),
path.resolve('examples'),
path.resolve('tutorials')
// include: [ path.resolve('src'), ],
exclude: [
/node_modules\/(?!kdbush\/).*/,
path.resolve('tests')
],
exclude: /node_modules\/(?!kdbush\/).*/,
use: [{
loader: 'babel-loader',
options: {
Expand All @@ -72,7 +71,9 @@ module.exports = {
}, {
test: /\.js$/,
include: [
path.resolve('tests')
path.resolve('tests'),
path.resolve('examples'),
path.resolve('tutorials')
],
use: [{
loader: 'babel-loader',
Expand Down

0 comments on commit ae62dc3

Please sign in to comment.