cloudux-starter-kit
Version:
Starter kit for UX developers in MediaCentral - NPM package
18 lines • 646 B
JavaScript
const fs = require('fs');
const path = require('path');
const toolkitPath = __dirname.substring(0, __dirname.length - 7);
const templatePath = path.join(toolkitPath, 'templates');
const templateCorePath = path.join(templatePath, 'core');
const templateReactPath = path.join(templatePath, 'react');
const templateCoreProjectAct = path.join(templateCorePath, 'src', 'project.config.json');
const version = path.join(toolkitPath, 'package');
const validation = path.join(toolkitPath, 'parseCliArguments');
module.exports = {
toolkitPath,
templatePath,
templateCorePath,
templateReactPath,
templateCoreProjectAct,
version,
validation
};