UNPKG

gen-jhipster

Version:

Spring Boot + Angular/React/Vue in one handy generator

10 lines (9 loc) 325 B
#!/usr/bin/env node "use strict"; const { spawn } = require('child_process'); const path = require('path'); const scriptPath = path.join(__dirname, './jhipster.cjs'); const child = spawn('node', ['--openssl-legacy-provider', scriptPath, ...process.argv.slice(2)], { stdio: 'inherit', }); child.on('close', process.exit);