@buildit/gravity-particles
Version:
Design token data and common assets used by other Gravity libraries and tools.
28 lines (24 loc) • 578 B
JavaScript
/**
* Shared constants used by public build-api and private build scripts.
*
* Although this is shipped as part of the NPM package, it is considered an
* internal ("private") API and is therefore not monitored for breaking changes.
*
* External consumers MUST NOT include this module.
*
* @private
*/
module.exports = {
/**
* Name of root source directory.
*/
srcDirname: 'src',
/**
* Name of root distributables directory.
*/
distDirname: 'dist',
/**
* Name of the SVG (for the Web) distributables dir.
*/
distWebSvgDirname: 'svg',
};