Browse Source

Use static deployment type if defined in config

master
Leo Lamprecht 8 years ago
parent
commit
0f52271757
No known key found for this signature in database GPG Key ID: B08517883D5E0E10
  1. 4
      lib/read-metadata.js

4
lib/read-metadata.js

@ -51,6 +51,10 @@ async function readMetaData(path, {
}
}
if (deploymentType === 'static') {
isStatic = true
}
if (deploymentType === 'npm') {
if (isStatic) {
pkg = listPackage

Loading…
Cancel
Save