mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
build(@vant/lazyload): using rollup to bundle (#9598)
This commit is contained in:
parent
75958887c2
commit
091b5c7ff8
@ -14,20 +14,21 @@
|
||||
"types"
|
||||
],
|
||||
"scripts": {
|
||||
"dev": "babel src --out-dir dist/esm --watch",
|
||||
"build": "babel src --out-dir dist/esm && BABEL_MODULE=commonjs babel src --out-dir dist/cjs",
|
||||
"dev": "rollup --config rollup.config.js --watch",
|
||||
"build": "rollup --config rollup.config.js",
|
||||
"release": "npm run build && release-it"
|
||||
},
|
||||
"license": "MIT",
|
||||
"repository": "https://github.com/youzan/vant/tree/dev/packages/vant-lazyload",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.12.8",
|
||||
"@babel/core": "^7.12.9",
|
||||
"release-it": "^14.2.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vant/use": "^1.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-babel": "^5.2.1",
|
||||
"@rollup/plugin-node-resolve": "^10.0.0",
|
||||
"release-it": "^14.2.2",
|
||||
"rollup": "^2.33.3"
|
||||
},
|
||||
"release-it": {
|
||||
"git": {
|
||||
"tag": false,
|
||||
|
22
packages/vant-lazyload/rollup.config.js
Normal file
22
packages/vant-lazyload/rollup.config.js
Normal file
@ -0,0 +1,22 @@
|
||||
import path from 'path';
|
||||
import babel from '@rollup/plugin-babel';
|
||||
import nodeResolve from '@rollup/plugin-node-resolve';
|
||||
|
||||
export default {
|
||||
input: path.join(__dirname, 'src', 'index.js'),
|
||||
output: [
|
||||
{
|
||||
dir: 'dist/cjs',
|
||||
format: 'cjs',
|
||||
},
|
||||
{
|
||||
dir: 'dist/esm',
|
||||
format: 'esm',
|
||||
},
|
||||
],
|
||||
external: ['vue', '@vant/use'],
|
||||
plugins: [
|
||||
babel({ babelHelpers: 'bundled', extensions: ['.js', '.ts'] }),
|
||||
nodeResolve(),
|
||||
],
|
||||
};
|
File diff suppressed because it is too large
Load Diff
@ -15,7 +15,7 @@ export default {
|
||||
},
|
||||
],
|
||||
plugins: [
|
||||
babel({ babelHelpers: 'runtime', extensions: ['.js', '.ts'] }),
|
||||
babel({ babelHelpers: 'bundled', extensions: ['.js', '.ts'] }),
|
||||
nodeResolve(),
|
||||
],
|
||||
};
|
||||
|
@ -9,8 +9,8 @@ const srcFiles = glob.sync(join(srcDir, '**', '*.ts'), {
|
||||
ignore: ['**/node_modules', '**/*.spec.ts'],
|
||||
});
|
||||
|
||||
const compile = (filePath, distDir) => {
|
||||
return new Promise((resolve, reject) => {
|
||||
const compile = (filePath, distDir) =>
|
||||
new Promise((resolve, reject) => {
|
||||
const code = readFileSync(filePath, 'utf-8');
|
||||
const distPath = filePath.replace(srcDir, distDir).replace('.ts', '.js');
|
||||
|
||||
@ -23,7 +23,6 @@ const compile = (filePath, distDir) => {
|
||||
})
|
||||
.catch(reject);
|
||||
});
|
||||
};
|
||||
|
||||
async function build() {
|
||||
// esm output
|
||||
|
Loading…
x
Reference in New Issue
Block a user