mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* add config files in any components folder * all test run option ft and option to skip build and run only test
9 lines
190 B
JavaScript
9 lines
190 B
JavaScript
const webpack = require('webpack');
|
|
const webpackMerge = require('webpack-merge');
|
|
const testConfig = require('./config/webpack.test.js');
|
|
|
|
module.exports = webpackMerge(testConfig, {
|
|
|
|
|
|
});
|