9 lines
237 B
JavaScript
Executable file
9 lines
237 B
JavaScript
Executable file
/**
|
|
* External dependencies.
|
|
*/
|
|
const path = require( 'path' );
|
|
|
|
module.exports = {
|
|
classicBuildPath: path.resolve( __dirname, '..', 'build', 'classic' ),
|
|
gutenbergBuildPath: path.resolve( __dirname, '..', 'build', 'gutenberg' ),
|
|
};
|