0.5.0 • Published 25 days ago

@rutan/deployment-zip v0.5.0

Weekly downloads
1
License
MIT
Repository
github
Last release
25 days ago

@rutan/deployment-zip

How to use

$ npm install -g @rutan/deployment-zip
$ deployment-zip ./game

Config

use ./.deployment-zip.js

export default {
  // .gitignore style
  ignores: [
    '.env'
  ],

  // .gitignore file
  ignoreFile: '.deployment-zip-ignore'

  // mode zip config
  zip: {
    output: 'output.zip'
  },

  // mode copy config
  copy: {
    outDir: 'outputDir',
  }
};