-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
51 lines (51 loc) · 1.93 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const path = require('path');
const { merge } = require('webpack-merge');
const wpScriptsConfig = require('@wordpress/scripts/config/webpack.config');
const version = require('./package.json').version;
const { ProvidePlugin } = require('webpack');
/**
* Aliases for resolving Brand imports
*/
const alias = {
App: path.resolve(__dirname, '/src/app/'),
Assets: path.resolve( __dirname, '/assets/' ),
Store: path.resolve(__dirname, '/src/app/data/store.js'),
Routes: path.resolve(__dirname, '/src/app/data/routes.js'),
'@modules': path.resolve( __dirname, '/vendor/newfold-labs/' ),
};
/**
* Make most-common imports available globally to ease import debt.
* (Instead of import { useEffect } from '@wordpress/element' in every file)
*/
const mostCommonImports = {
Fragment: ['@wordpress/element', 'Fragment'],
useState: ['@wordpress/element', 'useState'],
useEffect: ['@wordpress/element', 'useEffect'],
useContext: ['@wordpress/element', 'useContext'],
useLocation: ['react-router-dom', 'useLocation'],
useNavigate: ['react-router-dom', 'useNavigate'],
_filter: ['lodash', 'filter'],
_map: ['lodash', 'map'],
_isEmpty: ['lodash', 'isEmpty'],
_camelCase: ['lodash', 'camelCase'],
__: ['@wordpress/i18n', '__'],
_n: ['@wordpress/i18n', '_n'],
sprintf: ['@wordpress/i18n', 'sprintf'],
classNames: ['classnames'],
};
/**
* Extend @wordpress/scripts default webpack config with:
* - Versioned build folder (via package.json version) for cache-busting.
* - Set Plugin-specific aliases for tidy imports.
* - Use webpack's ProvidePlugin to ease repetitive imports.
*/
const webConfig = {
mode: 'production',
output: {
// versioned output directory i.e. /build/1.0.0, /build/1.1.0, etc.
path: path.resolve(process.cwd(), 'build/' + version),
},
resolve: { alias },
plugins: [new ProvidePlugin(mostCommonImports)],
};
module.exports = merge(wpScriptsConfig, webConfig);