mirror of
https://github.com/strapi/strapi.git
synced 2025-07-27 02:44:13 +00:00
14 lines
360 B
JavaScript
14 lines
360 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
const createCacheDir = require('./create-cache-dir');
|
||
|
const getCustomWebpackConfig = require('./get-custom-webpack-config');
|
||
|
const shouldBuildAdmin = require('./should-build-admin');
|
||
|
const watchAdminFiles = require('./watch-admin-files');
|
||
|
|
||
|
module.exports = {
|
||
|
createCacheDir,
|
||
|
getCustomWebpackConfig,
|
||
|
shouldBuildAdmin,
|
||
|
watchAdminFiles,
|
||
|
};
|