UNPKG

folder-upload-webpack-plugin

Version:

Upload your folder to ssh sftp server after build, add support to 'webpack --watch'

98 lines (81 loc) 2.31 kB
# folder-upload-webpack-plugin > Upload your folder to ftp/sftp server easier and faster ![](https://img.shields.io/npm/v/folder-upload-webpack-plugin.svg) [![NPM](https://nodei.co/npm/folder-upload-webpack-plugin.png)](https://nodei.co/npm/folder-upload-webpack-plugin/) ## Installation ```bash npm i -D folder-upload-webpack-plugin ``` ## Usage add following code to your webpack config file. ```javascript const FolderUploadWebpackPlugin = require('folder-upload-webpack-plugin'); let webpackConfig = { entry: 'index.js', output: { path: 'assets', filename: 'index_bundle.js' }, plugins: [ new FolderUploadWebpackPlugin({ confirmation: true, server: {host: 'ip', port: '22', username: 'username', password: 'password'}, paths: () => { let data = []; data[path.resolve(__dirname, "build_/")] = path.join(".../build/"); return data; }, clear: true, logging: false, }) ] } ``` ### Options Detail: Option Name|Usage|Type|Default Value ---|:--:|:--:|:-: confirmation|show confirmation before upload|Boolean|false server|ssh config for options(or Array, to multiple servers) you can see [docs](https://github.com/mscdex/ssh2#client-methods)|Object|{port:22} paths|function - return object {local: remote}, see path example|Function|(none) clear|optional clear server folder before upload|Boolean|true logging|optional show log|Boolean|false symlink|create local symlink, after upload|object|null ### Extend Options Detail: Option Name|Usage|Type|Default Value ---|:--:|:--:|:-: ssh|optional ssh class|Class|see code chmod|optional compress level|Octal|0o644 before|optional array with command|Array|[] after|optional array with command|Array|[] for other options you can see https://github.com/mscdex/ssh2#client-methods ## path example ``` ... paths: () => { let data = []; data[path.resolve(__dirname, "build_/")] = path.join("...build/"); return data; },... ``` ## Change Log ### 2.4.0 ``` - fix ts ``` ### 2.1.0 ``` - add after and before command ``` ### 2.0.0 ``` - replace paths. see Options - remove pathsClear && remotePath ``` ### 1.1.0 ``` - change upload type ``` ### 1.0.0 ``` - init ```