run-https.json5 318 B

1234567891011121314
  1. {
  2. services: [
  3. {
  4. name: 'term.http',
  5. pwd: './dist',
  6. command: 'npx http-server -p 8082 -S -C "{cert}" -K "{key}"',
  7. },
  8. {
  9. name: 'term.rollup',
  10. pwd: '.',
  11. command: 'npx rollup -c rollup.config.js --watch',
  12. },
  13. ]
  14. }