@bolt/build-tools
Version:
Curated collection of front-end build tools in the Bolt Design System.
15 lines (13 loc) • 499 B
JavaScript
// Older method for generating a Japanese language-specific version of the build
const config = {
lang: ['en', 'ja'],
env: 'drupal', // @todo: we really need to refactor this to allow running just whatever tasks you need (more easily / more intuitively)
buildDir: './dist-lang/build',
dataDir: './dist-lang/build/data',
wwwDir: './dist-lang',
components: {
global: ['@bolt/core-v3.x', '@bolt/components-button', '@bolt/global'],
individual: [],
},
};
module.exports = config;