From bce5698f6119b17aadba2e8c59af4d570129bc0f Mon Sep 17 00:00:00 2001 From: Billy Janitsch Date: Thu, 23 Mar 2023 13:17:59 -0400 Subject: [PATCH] Permit dev dep imports in config/test files (#67) --- index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index a387a00..05396f1 100644 --- a/index.js +++ b/index.js @@ -41,15 +41,15 @@ module.exports = { 'sandbox/**', 'spec/**', '**/__integration__/**', + '**/__integration_tests___/**', '**/__tests__/**', '**/__mocks__/**', 'test.{js,jsx,ts,tsx}', 'test-*.{js,jsx,ts,tsx}', '**/*{.,_}{test,spec}.{js,jsx,ts,tsx}', '**/jest{.,-,_}*.{js,jsx,ts,tsx}', - '**/rollup.config.js', - '**/webpack.config.js', - '**/webpack.config.*.js', + '**/*.config.{js,jsx,ts,tsx}', + '**/*.config.*.{js,jsx,ts,tsx}', ], optionalDependencies: false, },