UNPKG

724 BJavaScriptView Raw
1const { hasRequiredDeps, hasRequiredFiles, getYarnOrNPMCommand, scanScripts } = require('./utils/jsdetect')
2module.exports = function() {
3 // REQUIRED FILES
4 if (!hasRequiredFiles(['package.json'])) return false
5 // REQUIRED DEPS
6 if (!hasRequiredDeps(['@phenomic/core'])) return false
7
8 /** everything below now assumes that we are within gatsby */
9
10 const possibleArgsArrs = scanScripts({
11 preferredScriptsArr: ['start'],
12 preferredCommand: 'phenomic start'
13 })
14
15 return {
16 type: 'phenomic',
17 command: getYarnOrNPMCommand(),
18 port: 8888,
19 proxyPort: 3333,
20 env: { ...process.env },
21 possibleArgsArrs,
22 urlRegexp: new RegExp(`(http://)([^:]+:)${3333}(/)?`, 'g'),
23 dist: 'public'
24 }
25}