Files
third_party_jsframework/build_strip_native_min.js
lixingchi1 69d7620bb0 adapter to node 18
Signed-off-by: lixingchi1 <lixingchi1@huawei.com>
2024-01-02 18:41:13 +08:00

103 lines
2.6 KiB
JavaScript

/*
* 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 { getBabelOutputPlugin } = require('@rollup/plugin-babel');
const typescript = require('@rollup/plugin-typescript');
const uglifyJs = require('./rollup-plugin-uglifyjs');
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;
}
if (warning.code === 'PLUGIN_WARNING') {
return;
}
console.warn(`(!) ${warning.message}`);
};
const tsPlugin = typescript({
tsconfig: path.resolve(__dirname, 'tsconfig.json'),
module: "ESNext"
});
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(),
getBabelOutputPlugin({
exclude: 'node_moduels/**',
presets: [ '@babel/preset-env' ],
allowAllFormats: true
}),
uglifyJs()
]
};
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}...`);
}
});
}