vanilla-make

0.5.2 • Public • Published

This project was renamed to vanipack.

Vanipack

Universal build system for isomorphic app.

build status version license


Installation

$ npm install --save vanipack

Usage

# start development server 
$ vanipack serve
 
# build for production 
$ NODE_ENV=production vanipack build
 
# start production server 
$ NODE_ENV=production vanipack start

Config

// vanipack.js
 
export default {
  plugins: [],
 
  webpack: null,
 
  path: {
    public: "/",
    static: "./static",
  },
 
  entry: {
    client: "./entry/client",
    server: "./entry/server",
  },
 
  bind: {
    client: {
      host: "127.0.0.1",
      port: 8080,
    },
    server: {
      host: "127.0.0.1",
      port: 8000,
    },
  },
};

Plugins

Examples



Chicory Project

Package Sidebar

Install

npm i vanilla-make

Weekly Downloads

12

Version

0.5.2

License

MIT

Last publish

Collaborators

  • lixiaoyan