1 Star 0 Fork 259

Jeam.wang / third_party_jsframework

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build_strip_native_min.js 2.44 KB
一键复制 编辑 原始数据 按行查看 历史
yinchuang 提交于 2022-08-25 22:34 . Optimize build js
/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
const fs = require('fs');
const path = require('path');
const rollup = require('rollup');
const resolve = require('rollup-plugin-node-resolve');
const commonjs = require('rollup-plugin-commonjs');
const json = require('rollup-plugin-json');
const babel = require('rollup-plugin-babel');
const typescript = require('rollup-plugin-typescript2');
const { uglify } = require('rollup-plugin-uglify');
const {
eslint
} = require('rollup-plugin-eslint');
const frameworkBanner = `var global=this; var process={env:{}}; ` + `var setTimeout=global.setTimeout;\n`;
const frameworkBannerForJSAPIMock = `var global=globalThis;`;
const onwarn = warning => {
// Silence circular dependency warning
if (warning.code === 'CIRCULAR_DEPENDENCY') {
return;
}
console.warn(`(!) ${warning.message}`);
};
const tsPlugin = typescript({
tsconfig: path.resolve(__dirname, 'tsconfig.json'),
check: true
});
const esPlugin = eslint({
include: ['**/*.ts'],
exclude: ['node_modules/**', 'lib/**']
});
const configInput = {
input: path.resolve(__dirname, 'runtime/preparation/index.ts'),
onwarn,
plugins: [
esPlugin,
tsPlugin,
json(),
resolve(),
commonjs(),
babel({
exclude: 'node_moduels/**'
}),
uglify()
]
};
const configOutput = {
file: path.resolve(__dirname, 'dist/strip.native.min.js'),
format: 'umd',
banner: frameworkBanner
};
rollup.rollup(configInput).then(bundle => {
bundle.write(configOutput).then(() => {
countSize(configOutput.file);
});
});
function countSize(filePath) {
const file = path.relative(__dirname, filePath);
fs.stat(filePath, function (error, stats) {
if (error) {
console.error('file size is wrong');
} else {
const size = (stats.size / 1024).toFixed(2) + 'KB';
console.log(`generate snapshot file: ${file}...\nthe snapshot file size: ${size}...`);
}
});
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jeam-wang/third_party_jsframework.git
git@gitee.com:jeam-wang/third_party_jsframework.git
jeam-wang
third_party_jsframework
third_party_jsframework
master

搜索帮助

344bd9b3 5694891 D2dac590 5694891