Eugene Pankov 8 years ago
parent
commit
9f58e9f183
2 changed files with 1 additions and 3 deletions
  1. 1 0
      scripts/build-windows.js
  2. 0 3
      scripts/install-deps.js

+ 1 - 0
scripts/build-windows.js

@@ -8,4 +8,5 @@ builder({
   extraMetadata: {
     version: vars.version,
   },
+  publish: 'onTagOrDraft',
 })

+ 0 - 3
scripts/install-deps.js

@@ -5,18 +5,15 @@ const vars = require('./vars')
 const log = require('npmlog')
 
 log.info('deps', 'app')
-sh.exec('yarn prune')
 sh.exec('yarn install')
 
 sh.cd('app')
-sh.exec('yarn prune')
 sh.exec('yarn install')
 sh.cd('..')
 
 vars.builtinPlugins.forEach(plugin => {
   log.info('deps', plugin)
   sh.cd(plugin)
-  sh.exec('yarn prune')
   sh.exec('yarn install')
   sh.cd('..')
 })