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
$ jkbs start --config webpack.config.js
$ NODE_ENV=production jkbs build --config webpack.config.js
$ 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