webpack-ftp-upload

1.0.2 • Public • Published

webpack-ftp-upload

webpack plugin for ftp upload

Installation

npm i -D webpack-ftp-upload

or

yarn add --dev webpack-ftp-upload

Usage

add following code to your webpack config file.

const WebpackFtpUpload = require('webpack-ftp-upload')
 
new WebpackFtpUpload('path'); // path.join(__dirname, '..')           

add .ftpcon

    {
        "host": "x.x.x.x",
        "port": "22",
        "username": "xx",
        "password": "xxx",
        "path": "remote path"
    }

Simple example

const WebpackFtpUpload = require('webpack-ftp-upload')
 
module.exports = {
    entry: 'ftp.js',
    output: {
        path: path.join(__dirname, 'dist'),
        filename: 'ftp_bundle.js'
    },
    plugins: [
        new WebpackFtpUpload('path')
    ]
}

License

MIT © etwo

Readme

Keywords

Package Sidebar

Install

npm i webpack-ftp-upload

Weekly Downloads

3

Version

1.0.2

License

MIT

Unpacked Size

4.22 kB

Total Files

7

Last publish

Collaborators

  • etwo