mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-04-05 22:52:02 +08:00
refactor(build): use webpack es6 imports
This commit is contained in:
parent
31ffbfe978
commit
04137f44ba
@ -2,7 +2,7 @@ import { readJSONSync, writeFileSync } from 'fs-extra';
|
|||||||
import { resolve } from 'path';
|
import { resolve } from 'path';
|
||||||
import * as TerserPlugin from 'terser-webpack-plugin';
|
import * as TerserPlugin from 'terser-webpack-plugin';
|
||||||
import * as unminifiedPlugin from 'unminified-webpack-plugin';
|
import * as unminifiedPlugin from 'unminified-webpack-plugin';
|
||||||
import * as webpack from 'webpack';
|
import { Configuration, DefinePlugin, ProvidePlugin, webpack } from 'webpack';
|
||||||
|
|
||||||
import { ROOT } from '../build/helpers';
|
import { ROOT } from '../build/helpers';
|
||||||
import { cleanEmittedData, EMIT_PATH, InjectableClassEntry } from '../build/transformers/extract-injectables';
|
import { cleanEmittedData, EMIT_PATH, InjectableClassEntry } from '../build/transformers/extract-injectables';
|
||||||
@ -20,7 +20,7 @@ const INJECTABLE_CLASSES = readJSONSync(EMIT_PATH).map((item: InjectableClassEnt
|
|||||||
return item;
|
return item;
|
||||||
});
|
});
|
||||||
|
|
||||||
const webpackConfig: webpack.Configuration = {
|
const webpackConfig: Configuration = {
|
||||||
mode: 'production',
|
mode: 'production',
|
||||||
entry: INDEX_PATH,
|
entry: INDEX_PATH,
|
||||||
devtool: 'source-map',
|
devtool: 'source-map',
|
||||||
@ -45,10 +45,10 @@ const webpackConfig: webpack.Configuration = {
|
|||||||
],
|
],
|
||||||
},
|
},
|
||||||
plugins: [
|
plugins: [
|
||||||
new webpack.ProvidePlugin({
|
new ProvidePlugin({
|
||||||
__extends: ['tslib', '__extends'],
|
__extends: ['tslib', '__extends'],
|
||||||
}),
|
}),
|
||||||
new webpack.DefinePlugin({
|
new DefinePlugin({
|
||||||
'process.env.NODE_ENV': JSON.stringify('production'),
|
'process.env.NODE_ENV': JSON.stringify('production'),
|
||||||
}),
|
}),
|
||||||
new unminifiedPlugin(),
|
new unminifiedPlugin(),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user