| 1 |
/** |
| 2 |
* External dependencies. |
| 3 |
*/ |
| 4 |
const path = require( 'path' ); |
| 5 |
|
| 6 |
module.exports = { |
| 7 |
classicBuildPath: path.resolve( __dirname, '..', 'build', 'classic' ), |
| 8 |
gutenbergBuildPath: path.resolve( __dirname, '..', 'build', 'gutenberg' ), |
| 9 |
}; |
| 10 |
|