phenomic
Version:
Modern website generator based on the React and Webpack ecosystem.
12 lines (8 loc) • 332 B
JavaScript
// ⚠️ Used in postinstall, so es6 - imports - not transpiled
const resolve = require("path").resolve
const platformSuffix = process.platform === "win32" ? ".cmd" : ""
module.exports = {
babelNode: resolve("./node_modules/.bin/babel-node" + platformSuffix),
npm: "npm" + platformSuffix,
yarn: "yarn" + platformSuffix,
}