use direct exports

This commit is contained in:
Ron Rennick 2020-10-19 11:32:28 -03:00
parent 3b1481bb01
commit 503e898307
1 changed files with 4 additions and 10 deletions

View File

@ -1,17 +1,11 @@
/* /*
* External dependencies * External dependencies
*/ */
import allWPUtilities from '@wordpress/e2e-test-utils'; export * from '@wordpress/e2e-test-utils';
/* /*
* Internal dependencies * Internal dependencies
*/ */
import allFlows from './flows'; export * from './flows';
import allComponents from './components'; export * from './components';
import allUtilities from './page-utils'; export * from './page-utils';
module.exports = {
...allWPUtilities,
...allFlows,
...allComponents,
...allUtilities,
};