mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[new feature] support es module (#875)
This commit is contained in:
parent
6d74198e27
commit
f97bb54688
@ -1,3 +1,4 @@
|
|||||||
|
es/
|
||||||
lib/
|
lib/
|
||||||
dist/
|
dist/
|
||||||
node_modules/
|
node_modules/
|
||||||
|
3
.gitignore
vendored
3
.gitignore
vendored
@ -4,7 +4,8 @@
|
|||||||
.idea
|
.idea
|
||||||
.vscode
|
.vscode
|
||||||
packages/**/lib
|
packages/**/lib
|
||||||
lib/
|
es
|
||||||
|
lib
|
||||||
node_modules
|
node_modules
|
||||||
example/dist
|
example/dist
|
||||||
/docs/dist
|
/docs/dist
|
||||||
|
@ -42,9 +42,14 @@ npm i babel-plugin-import -D
|
|||||||
|
|
||||||
```js
|
```js
|
||||||
// set babel config in .babelrc or babel-loader
|
// set babel config in .babelrc or babel-loader
|
||||||
|
// Note: Don't set libraryDirectory if you are using webpack 1.
|
||||||
{
|
{
|
||||||
"plugins": [
|
"plugins": [
|
||||||
["import", { "libraryName": "vant", "style": true }]
|
["import", {
|
||||||
|
"libraryName": "vant",
|
||||||
|
"libraryDirectory": "es",
|
||||||
|
"style": true
|
||||||
|
}]
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -39,9 +39,14 @@ npm i babel-plugin-import -D
|
|||||||
|
|
||||||
```js
|
```js
|
||||||
// 在 .babelrc 或 babel-loader 中添加插件配置
|
// 在 .babelrc 或 babel-loader 中添加插件配置
|
||||||
|
// 注意:webpack 1 无需设置 libraryDirectory。
|
||||||
{
|
{
|
||||||
"plugins": [
|
"plugins": [
|
||||||
["import", { "libraryName": "vant", "style": true }]
|
["import", {
|
||||||
|
"libraryName": "vant",
|
||||||
|
"libraryDirectory": "es",
|
||||||
|
"style": true
|
||||||
|
}]
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -1,34 +1,33 @@
|
|||||||
/**
|
/**
|
||||||
* 编译 components 到 lib 目录
|
* Compile components
|
||||||
*/
|
*/
|
||||||
const fs = require('fs-extra');
|
const fs = require('fs-extra');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const compiler = require('vue-sfc-compiler');
|
const compiler = require('vue-sfc-compiler');
|
||||||
const libDir = path.resolve(__dirname, '../../lib');
|
const esDir = path.join(__dirname, '../../es');
|
||||||
const srcDir = path.resolve(__dirname, '../../packages');
|
const libDir = path.join(__dirname, '../../lib');
|
||||||
|
const srcDir = path.join(__dirname, '../../packages');
|
||||||
const babel = require('babel-core');
|
const babel = require('babel-core');
|
||||||
const compilerOption = {
|
const compilerOption = {
|
||||||
babel: {
|
babel: {
|
||||||
extends: path.resolve(__dirname, '../../.babelrc')
|
extends: path.join(__dirname, '../../.babelrc')
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
process.env.BABEL_ENV = 'commonjs';
|
// clear dir
|
||||||
|
fs.emptyDirSync(esDir);
|
||||||
// clear lib
|
|
||||||
fs.emptyDirSync(libDir);
|
fs.emptyDirSync(libDir);
|
||||||
|
|
||||||
// copy packages
|
// copy packages
|
||||||
fs.copySync(srcDir, libDir);
|
fs.copySync(srcDir, esDir);
|
||||||
|
|
||||||
// 编译所有 .vue 文件到 .js
|
compile(esDir);
|
||||||
compile(libDir);
|
|
||||||
|
|
||||||
function compile(dir) {
|
function compile(dir, jsOnly = false) {
|
||||||
const files = fs.readdirSync(dir);
|
const files = fs.readdirSync(dir);
|
||||||
|
|
||||||
files.forEach(file => {
|
files.forEach(file => {
|
||||||
const absolutePath = path.resolve(dir, file);
|
const absolutePath = path.join(dir, file);
|
||||||
|
|
||||||
// 移除 vant-css
|
// 移除 vant-css
|
||||||
if (file.indexOf('vant-css') !== -1) {
|
if (file.indexOf('vant-css') !== -1) {
|
||||||
@ -37,7 +36,7 @@ function compile(dir) {
|
|||||||
} else if (isDir(absolutePath)) {
|
} else if (isDir(absolutePath)) {
|
||||||
return compile(absolutePath);
|
return compile(absolutePath);
|
||||||
// 编译 .vue 文件
|
// 编译 .vue 文件
|
||||||
} else if (/\.vue$/.test(file)) {
|
} else if (/\.vue$/.test(file) && !jsOnly) {
|
||||||
const source = fs.readFileSync(absolutePath, 'utf-8');
|
const source = fs.readFileSync(absolutePath, 'utf-8');
|
||||||
fs.removeSync(absolutePath);
|
fs.removeSync(absolutePath);
|
||||||
|
|
||||||
@ -58,6 +57,10 @@ function compile(dir) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
process.env.BABEL_ENV = 'commonjs';
|
||||||
|
fs.copySync(esDir, libDir);
|
||||||
|
compile(libDir);
|
||||||
|
|
||||||
function isDir(dir) {
|
function isDir(dir) {
|
||||||
return fs.lstatSync(dir).isDirectory();
|
return fs.lstatSync(dir).isDirectory();
|
||||||
}
|
}
|
||||||
|
@ -9,19 +9,19 @@ const dependencyTree = require('dependency-tree');
|
|||||||
const SEP = path.sep;
|
const SEP = path.sep;
|
||||||
|
|
||||||
components.forEach(componentName => {
|
components.forEach(componentName => {
|
||||||
const libDir = path.resolve(__dirname, '../../lib');
|
const esDir = path.resolve(__dirname, '../../es');
|
||||||
const content = analyzeDependencies(componentName, libDir).map(component => `require('../../vant-css/${component}.css');`);
|
const content = analyzeDependencies(componentName, esDir).map(component => `import '../../vant-css/${component}.css';`);
|
||||||
fs.outputFileSync(path.join(libDir, componentName, './style/index.js'), content.join('\n'));
|
fs.outputFileSync(path.join(esDir, componentName, './style/index.js'), content.join('\n'));
|
||||||
});
|
});
|
||||||
|
|
||||||
// Analyze component dependencies
|
// Analyze component dependencies
|
||||||
function analyzeDependencies(componentName, libDir) {
|
function analyzeDependencies(componentName, esDir) {
|
||||||
const checkList = ['base'];
|
const checkList = ['base'];
|
||||||
const whiteList = ['icon', 'loading', 'cell', 'button'];
|
const whiteList = ['icon', 'loading', 'cell', 'button'];
|
||||||
search(dependencyTree({
|
search(dependencyTree({
|
||||||
directory: libDir,
|
directory: esDir,
|
||||||
filename: path.resolve(libDir, componentName, 'index.js'),
|
filename: path.resolve(esDir, componentName, 'index.js'),
|
||||||
filter: path => path.indexOf(`vant${SEP}lib${SEP}`) !== -1
|
filter: path => path.indexOf(`vant${SEP}es${SEP}`) !== -1
|
||||||
}), checkList, whiteList);
|
}), checkList, whiteList);
|
||||||
return checkList.filter(component => checkComponentHasStyle(component));
|
return checkList.filter(component => checkComponentHasStyle(component));
|
||||||
}
|
}
|
||||||
@ -29,7 +29,7 @@ function analyzeDependencies(componentName, libDir) {
|
|||||||
function search(tree, checkList, whiteList) {
|
function search(tree, checkList, whiteList) {
|
||||||
tree && Object.keys(tree).forEach(key => {
|
tree && Object.keys(tree).forEach(key => {
|
||||||
search(tree[key], checkList, whiteList);
|
search(tree[key], checkList, whiteList);
|
||||||
const component = key.split(`${SEP}vant${SEP}lib${SEP}`)[1].replace(`${SEP}index.js`, '').replace(`mixins${SEP}`, '');
|
const component = key.split(`${SEP}vant${SEP}es${SEP}`)[1].replace(`${SEP}index.js`, '').replace(`mixins${SEP}`, '');
|
||||||
if (checkList.indexOf(component) === -1 && whiteList.indexOf(component) === -1) {
|
if (checkList.indexOf(component) === -1 && whiteList.indexOf(component) === -1) {
|
||||||
checkList.push(component);
|
checkList.push(component);
|
||||||
}
|
}
|
||||||
@ -37,5 +37,5 @@ function search(tree, checkList, whiteList) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function checkComponentHasStyle(componentName) {
|
function checkComponentHasStyle(componentName) {
|
||||||
return fs.existsSync(path.join(__dirname, '../../lib/vant-css/', `${componentName}.css`));
|
return fs.existsSync(path.join(__dirname, '../../es/vant-css/', `${componentName}.css`));
|
||||||
}
|
}
|
||||||
|
@ -9,7 +9,7 @@ module.exports = Object.assign({}, config, {
|
|||||||
'vant': './packages/index.js'
|
'vant': './packages/index.js'
|
||||||
},
|
},
|
||||||
output: {
|
output: {
|
||||||
path: path.join(__dirname, '../lib'),
|
path: path.join(__dirname, '../es'),
|
||||||
library: 'vant',
|
library: 'vant',
|
||||||
libraryTarget: 'umd',
|
libraryTarget: 'umd',
|
||||||
filename: isMinify ? '[name].min.js' : '[name].js',
|
filename: isMinify ? '[name].min.js' : '[name].js',
|
||||||
|
@ -16,9 +16,14 @@ npm i babel-plugin-import -D
|
|||||||
|
|
||||||
```js
|
```js
|
||||||
// set babel config in .babelrc or babel-loader
|
// set babel config in .babelrc or babel-loader
|
||||||
|
// Note: Don't set libraryDirectory if you are using webpack 1.
|
||||||
{
|
{
|
||||||
"plugins": [
|
"plugins": [
|
||||||
["import", { "libraryName": "vant", "style": true }]
|
["import", {
|
||||||
|
"libraryName": "vant",
|
||||||
|
"libraryDirectory": "es",
|
||||||
|
"style": true
|
||||||
|
}]
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -16,9 +16,14 @@ npm i babel-plugin-import -D
|
|||||||
|
|
||||||
```js
|
```js
|
||||||
// 在 .babelrc 或 babel-loader 中添加插件配置
|
// 在 .babelrc 或 babel-loader 中添加插件配置
|
||||||
|
// 注意:webpack 1 无需设置 libraryDirectory。
|
||||||
{
|
{
|
||||||
"plugins": [
|
"plugins": [
|
||||||
["import", { "libraryName": "vant", "style": true }]
|
["import", {
|
||||||
|
"libraryName": "vant",
|
||||||
|
"libraryDirectory": "es",
|
||||||
|
"style": true
|
||||||
|
}]
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
@ -8,6 +8,7 @@
|
|||||||
"typings": "types/index.d.ts",
|
"typings": "types/index.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
"lib",
|
"lib",
|
||||||
|
"es",
|
||||||
"packages",
|
"packages",
|
||||||
"types"
|
"types"
|
||||||
],
|
],
|
||||||
|
@ -25,7 +25,7 @@ gulp.task('compile', () => {
|
|||||||
gulp.task('lib', ['compile'], () => {
|
gulp.task('lib', ['compile'], () => {
|
||||||
const ttf = glob.sync(resolve('./src/*.ttf'));
|
const ttf = glob.sync(resolve('./src/*.ttf'));
|
||||||
ttf.forEach(ttf => fs.copy(ttf, './lib/' + path.parse(ttf).base));
|
ttf.forEach(ttf => fs.copy(ttf, './lib/' + path.parse(ttf).base));
|
||||||
fs.copy('./lib', '../../lib/vant-css');
|
fs.copy('./lib', '../../es/vant-css');
|
||||||
});
|
});
|
||||||
|
|
||||||
// extract svg from sketch
|
// extract svg from sketch
|
||||||
|
Loading…
x
Reference in New Issue
Block a user