Split SearchControls into separate component (#174)

* Split SearchControls into separate component

* Add testing config

* Add webpack config

* Add snapshot tests for Search Controls

* bump version and update package-lock format
This commit is contained in:
Nathan Sprenkle
2021-04-28 13:27:02 -04:00
committed by GitHub
parent 27296449b4
commit 84a7531530
10 changed files with 42549 additions and 1753 deletions

13
webpack.dev.config.js Normal file
View File

@@ -0,0 +1,13 @@
const path = require('path');
const { createConfig } = require('@edx/frontend-build');
const config = createConfig('webpack-dev');
config.resolve.modules = [
path.resolve(__dirname, './src'),
'node_modules',
];
config.module.rules[0].exclude = /node_modules\/(?!(query-string|split-on-first|strict-uri-encode|@edx))/;
module.exports = config;