打造一个内部的组件库,在我们进行代码的重构,以及开发新的功能的时候,抽离公共的组件,减少代码的复用,注重业务与组件的分离,简化耦合度,便于开发与维护。
若是你在 https://github.com/YolkPie/components-vue 上看到这个文档,就要注意下你来的地方对不对啦!不要直接在 https://github.com/YolkPie/components-vue 更新代码,请移驾到 https://git.xx.com/auction-fe/components-vue (内部git组件库),开始你的组件封装吧~~
该项目使用了travis-ci进行了预览页面的自动构建,因此代码需要同步到github。
代码克隆到本地之后,需要先增加github源:
git remote add github https://github.com/YolkPie/components-vue.git
当master分支更新之后,在执行了git push
将代码推送到git.xxx.com(内部git组件库)之后,再执行git pull github master
最后执行 git push github
将更新同步给github,接下来travis会自动构建预览页。
npm install
npm run start
npm run publish
npm run link
npm run build
npm run build-storybook
// 组件中内置了单个组件所需的样式 无需配置babel-plugin-import
import { MiButton, Modal } from 'miVant'
import Vue from 'vue'
Vue.use(MiButton)
Vue.use(Modal)
Rollup 是一个 JavaScript 模块打包器,可以将小块代码编译成大块复杂的代码,例如 library 或应用程序。采用 es6 原生的模块机制进行模块的打包构建, 编译之后包 体积会更小。
- Cross-env报错的问题
sudo npm install --global cross-env
-
Rollup 打包 ,如果使用babel.config.js+babel7的话,坑比较多…….有时候会出现一些不知名的错误
-
rollup-plugin-vue在低版本0.68的时候,会报一个找不到input入口的错,目前项目中的rollup版本是V1.19.3
附rollup.config.prod.js
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import buble from 'rollup-plugin-buble'
import replace from 'rollup-plugin-replace';
import { uglify } from 'rollup-plugin-uglify';
import vue from 'rollup-plugin-vue'
import postcss from 'rollup-plugin-postcss';
const path = require('path');
const ENV = process.env.NODE_ENV;
const resolveFile = function (filePath) {
return path.join(__dirname, './', filePath)
}
export default {
input: resolveFile('src/components/index.js'),
output: {
dir: 'es',
format: 'umd',
name: 'miVant',
exports: 'named',
},
plugins: [
resolve({ extensions: ['.js', '.vue'] }),
postcss({
extensions: ['.less', '.css'],
use: [
['less', {
javascriptEnabled: true
}]
],
extract: true,
minimize: true,
}),
vue({
template: {
isProduction: true
},
css: false
}),
commonjs(),
buble({
objectAssign: 'Object.assign'
}),
replace({
exclude: 'node_modules/**',
ENV: JSON.stringify(process.env.NODE_ENV),
}),
(ENV === 'production' && uglify()),
],
};