UNPKG

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