build(@vant/lazyload): using rollup to bundle (#9598)

This commit is contained in:
neverland 2021-09-30 11:19:38 +08:00 committed by GitHub
parent 75958887c2
commit 091b5c7ff8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 146 additions and 1041 deletions

View File

@ -14,20 +14,21 @@
"types" "types"
], ],
"scripts": { "scripts": {
"dev": "babel src --out-dir dist/esm --watch", "dev": "rollup --config rollup.config.js --watch",
"build": "babel src --out-dir dist/esm && BABEL_MODULE=commonjs babel src --out-dir dist/cjs", "build": "rollup --config rollup.config.js",
"release": "npm run build && release-it" "release": "npm run build && release-it"
}, },
"license": "MIT", "license": "MIT",
"repository": "https://github.com/youzan/vant/tree/dev/packages/vant-lazyload", "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": { "dependencies": {
"@vant/use": "^1.3.2" "@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": { "release-it": {
"git": { "git": {
"tag": false, "tag": false,

View 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

View File

@ -15,7 +15,7 @@ export default {
}, },
], ],
plugins: [ plugins: [
babel({ babelHelpers: 'runtime', extensions: ['.js', '.ts'] }), babel({ babelHelpers: 'bundled', extensions: ['.js', '.ts'] }),
nodeResolve(), nodeResolve(),
], ],
}; };

View File

@ -9,8 +9,8 @@ const srcFiles = glob.sync(join(srcDir, '**', '*.ts'), {
ignore: ['**/node_modules', '**/*.spec.ts'], ignore: ['**/node_modules', '**/*.spec.ts'],
}); });
const compile = (filePath, distDir) => { const compile = (filePath, distDir) =>
return new Promise((resolve, reject) => { new Promise((resolve, reject) => {
const code = readFileSync(filePath, 'utf-8'); const code = readFileSync(filePath, 'utf-8');
const distPath = filePath.replace(srcDir, distDir).replace('.ts', '.js'); const distPath = filePath.replace(srcDir, distDir).replace('.ts', '.js');
@ -23,7 +23,6 @@ const compile = (filePath, distDir) => {
}) })
.catch(reject); .catch(reject);
}); });
};
async function build() { async function build() {
// esm output // esm output