Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/bs / src / scripts / shell / build_prod_post.ts
Size: Mime:
const { shell, resolve, resolveToRoot } = require('./params')

const { cd, echo, exec } = shell

const dist = resolveToRoot('./dist')
cd(dist)
echo(process.cwd)
exec('yarn install --production')

console.log('IGNORING_GQL_DIST_USING_PRE_DISTED')
// @todo probably could build it in...
// @note - this replaces postinstall
// @todo - dedupe duplicated node modules
// cd('node_modules/skava-graphql')
// echo(process.cwd)
// exec('yarn install --ignore-engines')
// exec('make build_prod')