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 / bundle / buildInParallel.ts
Size: Mime:
import { run } from 'parallel-webpack'

throw new Error('need to load registerDotEnv here / in the webpack.config')

const configPath = require.resolve('./webpack.config.js')

console.log({ configPath })

function notify() {
  console.log('@@notify')

  // @note - now done on server in jenkins?
  // require('../../shell/build_prod_post')
}

const parallelConfig = {
  watch: false,
  maxRetries: 1,
  stats: true,
  maxConcurrentWorkers: 2,
}

run(configPath, parallelConfig, notify)