@rutan/deployment-zip
v0.5.0
Published
A CLI tool to create a deployment zip file.
Downloads
11
Readme
@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',
}
};