mirror of
https://github.com/openharmony/developtools_ace-ets2bundle.git
synced 2026-07-21 03:55:23 -04:00
778f37ff05
Signed-off-by: lihong <lihong67@huawei.com> Change-Id: Ifcbd1595ac9237d871430e8911ff849a4fc9585e
212 lines
6.0 KiB
JavaScript
212 lines
6.0 KiB
JavaScript
/*
|
|
* Copyright (c) 2020 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 path = require('path');
|
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
|
const Webpack = require('webpack');
|
|
const { GenAbcPlugin } = require('./lib/gen_abc_plugin');
|
|
|
|
const {
|
|
projectConfig,
|
|
loadEntryObj,
|
|
readAppResource,
|
|
resources,
|
|
loadWorker
|
|
} = require('./main');
|
|
const { ResultStates } = require('./lib/compile_info');
|
|
const { processUISyntax } = require('./lib/process_ui_syntax');
|
|
const { IGNORE_ERROR_CODE } = require('./lib/utils');
|
|
|
|
const watchMode = (process.env.watchMode && process.env.watchMode === 'true') || false;
|
|
|
|
function initConfig(config) {
|
|
const projectPath = path.resolve(projectConfig.projectPath);
|
|
Object.assign(config, {
|
|
entry: projectConfig.entryObj,
|
|
watch: watchMode,
|
|
watchOptions: {
|
|
aggregateTimeout: 10,
|
|
poll: false,
|
|
ignored: /node_modules/
|
|
},
|
|
output: {
|
|
path: path.resolve(__dirname, projectConfig.buildPath),
|
|
filename: '[name].js',
|
|
devtoolModuleFilenameTemplate: 'webpack:///[absolute-resource-path]'
|
|
},
|
|
devtool: 'nosources-source-map',
|
|
mode: 'development',
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.ets$/,
|
|
use: [
|
|
{ loader: path.resolve(__dirname, 'lib/result_process.js') },
|
|
{
|
|
loader: 'ts-loader',
|
|
options: {
|
|
appendTsSuffixTo: [/\.ets$/],
|
|
onlyCompileBundledFiles: true,
|
|
configFile: path.resolve(__dirname, 'tsconfig.json'),
|
|
getCustomTransformers(program) {
|
|
return {
|
|
before: [processUISyntax(program, path.join(projectPath, 'pages'))],
|
|
after: []
|
|
};
|
|
},
|
|
ignoreDiagnostics: IGNORE_ERROR_CODE
|
|
}
|
|
},
|
|
{ loader: path.resolve(__dirname, 'lib/pre_process.js') }
|
|
]
|
|
},
|
|
{
|
|
test: /\.ts$/,
|
|
exclude: /node_modules/,
|
|
use: [
|
|
{
|
|
loader: 'ts-loader',
|
|
options: {
|
|
onlyCompileBundledFiles: true,
|
|
configFile: path.resolve(__dirname, 'tsconfig.json'),
|
|
}
|
|
},
|
|
{ loader: path.resolve(__dirname, 'lib/process_worker.js') }
|
|
]
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /node_modules/,
|
|
use: [
|
|
{ loader: path.resolve(__dirname, 'lib/process_worker.js') }
|
|
]
|
|
}
|
|
]
|
|
},
|
|
node: {
|
|
global: false
|
|
},
|
|
resolve: {
|
|
extensions:['.ts', '.ets', '.js'],
|
|
modules: [
|
|
projectPath,
|
|
path.join(projectPath, '../../../../../'),
|
|
'./node_modules',
|
|
path.join(__dirname, 'node_modules')
|
|
]
|
|
},
|
|
stats: { preset: 'none' },
|
|
plugins: [
|
|
new Webpack.WatchIgnorePlugin({
|
|
paths: [
|
|
/\.js$/,
|
|
/\.d\.ts$/
|
|
]}),
|
|
new CleanWebpackPlugin(),
|
|
new CopyPlugin({
|
|
patterns: [
|
|
{
|
|
from: '**/*',
|
|
context: path.resolve(__dirname, projectConfig.projectPath),
|
|
globOptions: {
|
|
ignore: [
|
|
'**/*.ets',
|
|
'**/*.ts',
|
|
'**/*.js',
|
|
path.resolve(__dirname, projectConfig.buildPath, '**').replace(/\\/g, '/')
|
|
]
|
|
},
|
|
noErrorOnMissing: true
|
|
},
|
|
{ from: projectConfig.manifestFilePath }
|
|
]
|
|
}),
|
|
new ResultStates()
|
|
]
|
|
})
|
|
}
|
|
|
|
function setProjectConfig(envArgs) {
|
|
const args = Object.keys(envArgs);
|
|
if (args.indexOf('projectName') === args.length - 2) {
|
|
projectConfig.projectPath = path.join(process.cwd(), args[args.length - 1]);
|
|
}
|
|
if (envArgs.aceModuleRoot) {
|
|
projectConfig.projectPath = envArgs.aceModuleRoot;
|
|
}
|
|
if (envArgs.aceModuleBuild) {
|
|
projectConfig.buildPath = envArgs.aceModuleBuild;
|
|
}
|
|
if (envArgs.aceManifestPath) {
|
|
projectConfig.manifestFilePath = envArgs.aceManifestPath;
|
|
}
|
|
}
|
|
|
|
module.exports = (env, argv) => {
|
|
const config = {};
|
|
setProjectConfig(env);
|
|
loadEntryObj(projectConfig);
|
|
initConfig(config);
|
|
|
|
if (env.isPreview !== "true") {
|
|
loadWorker(projectConfig);
|
|
if (env.compilerType && env.compilerType === 'ark') {
|
|
config.plugins.push(new GenAbcPlugin(projectConfig.buildPath, path.join(__dirname, 'bin'), env.buildMode === 'debug'));
|
|
}
|
|
} else {
|
|
projectConfig.isPreview = true;
|
|
}
|
|
|
|
if (env.sourceMap === 'none') {
|
|
config.devtool = false;
|
|
}
|
|
|
|
if (env.buildMode === 'release') {
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
|
config.mode = 'production';
|
|
config.optimization = {
|
|
emitOnErrors: true,
|
|
usedExports: false,
|
|
minimize: true,
|
|
minimizer: [
|
|
new TerserPlugin({
|
|
minify: (file, sourceMap) => {
|
|
const uglifyEsOptions = {
|
|
compress: {
|
|
unused: true
|
|
},
|
|
sourceMap: {
|
|
content: sourceMap
|
|
}
|
|
};
|
|
if (/\/workers\//.test(Object.keys(file)[0])) {
|
|
uglifyEsOptions.compress.unused = false;
|
|
}
|
|
return require('uglify-es').minify(file, uglifyEsOptions);
|
|
},
|
|
}),
|
|
]
|
|
};
|
|
config.output.sourceMapFilename = '_releaseMap/[name].js.map';
|
|
}
|
|
|
|
const appResourcePath = env.appResource || process.env.appResource;
|
|
if (appResourcePath) {
|
|
readAppResource(resources, appResourcePath);
|
|
}
|
|
return config;
|
|
}
|