0.1.34 • Published 7 years ago

jk-build-suite v0.1.34

Weekly downloads
4
License
MIT
Repository
github
Last release
7 years ago

JK-Build-Suite

A suite of build tools for providing dev ENV to JIKE, which is a formula = JK-* + IMPL + ENV. There is a list that explains what the factors stand for:

  • JK-* - Basic, common and independent libraries/components, you would find them via filter jk-.

  • IMPL - An implentation of a special BLL requirement. Generally, the name prefix of IMPL projects is jike-.

  • ENV - Nowadays, frondend projects must use build-structure to compile source files. But Webpack is suck, our code should be esay to run. Highly customizable build system will take days and days when initializing a project. So we need a unified and config-less build suite in dev environment.

Installation

$ npm i --save-dev jk-build-suite

CLI Usage

# Start a dev server, via Webpack Dev Server
$ jkbs start --config webpack.config.js

# Build source for production, via Webpack
$ NODE_ENV=production jkbs build --config webpack.config.js

# Upload static files to CDN, via Gulp
$ jkbs deploy 'dist/static/**' --output build-suite

Configuration Template

import {
  createWebpackConfig,
  mergeWebpackConfig
} from 'jk-build-suite'

const buildSuiteConfig = {
  DIST_DIR: 'dist'
}

const baseConfig = createWebpackConfig(
  buildSuiteConfig
)

const instanceConfig = {
  entry: {
    app: 'src/main'
  }
}

module.exports = mergeWebpackConfig(
  baseConfig,
  instanceConfig
)

The template is pithy, see the test/config directory for more complicated configurations.

Supported Languages

  • Template: HTML, EJS, Pug
  • Style: CSS, Stylus
  • Script: JavaScript, TypeScript, Vue

License

MIT

0.1.34

7 years ago

0.1.33

7 years ago

0.1.32

7 years ago

0.1.31

7 years ago

0.1.30

7 years ago

0.1.29

7 years ago

0.1.28

7 years ago

0.1.27

7 years ago

0.1.26

7 years ago

0.1.25

7 years ago

0.1.24

7 years ago

0.1.23

7 years ago

0.1.22

7 years ago

0.1.21

7 years ago

0.1.20

7 years ago

0.1.19

7 years ago

0.1.18

7 years ago

0.1.17

7 years ago

0.1.16

7 years ago

0.1.15

7 years ago

0.1.14

7 years ago

0.1.13

7 years ago

0.1.12

7 years ago

0.1.11

7 years ago

0.1.10

7 years ago

0.1.9

7 years ago

0.1.8

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago