0.0.14 • Published 6 years ago

webpack-production-builder v0.0.14

Weekly downloads
54
License
-
Repository
github
Last release
6 years ago

webpack-production-builder

At first I wanted to make it a 'webpack production builder'. But 
then, I decided to leave the compiling function to developers' 
local implementation so developers can use Webpack, rollup or anything else. 
In the end, this builder is just a minifying and uglification tool based on gulp.

Install

npm install webpack-production-builder -g

CLI Command

build

wpb -i input_path -o output_path

or

wpb --input input_path --output output_path

help

wpb -h

or

wpb --help

compile ignore

Add a json file named .staticignore.json to the root directory of your code to configure compiling.
Content of the file is like bellow:

{
  "compileIgnore": [
    "**/*.min.js",
    "**/*.min.css"
  ],
  "completelyIgnore": [
    "src/**"
  ]
}

compileIgnore : files that match the rules will not be compiled, and will be in the output directory untouched specified by {{output_path}}.
completelyIgnore : files that match it's rules will be removed completely from the output directory specified by {{output_path}}.

Issues

If you use react or ES2015, errors may be reported when compiling code with wpb. In this situation, you should install babel-preset-react or babel-preset-es2015 in the parent or higher directory of the code file

0.0.14

6 years ago

0.0.13

7 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago