mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-23 09:42:53 +02:00
Can successfully run Webpack to create dist/bundle.js
The bundled output is noticeably different; likely due to Webpack 4 vs. 2/3. The order of dependencies also appears to have changed. The overall output *seems* to be the same. Unsure how to full test that everything is getting bundled appropriately. This also allows the project to be built without having to manually copy files into node_modules.
This commit is contained in:
+27
-5
@@ -1,6 +1,8 @@
|
||||
var path = require('path');
|
||||
var webpack = require('webpack');
|
||||
|
||||
module.exports = {
|
||||
mode: "development",
|
||||
plugins: [
|
||||
// http://stackoverflow.com/questions/29080148/expose-jquery-to-real-window-object-with-webpack
|
||||
new webpack.ProvidePlugin({
|
||||
@@ -12,15 +14,35 @@ module.exports = {
|
||||
$: "jquery"
|
||||
}),
|
||||
],
|
||||
|
||||
target: "web",
|
||||
entry: "./src/engine.js",
|
||||
devtool: "nosources-source-map",
|
||||
output: {
|
||||
path: __dirname + "/dist/",
|
||||
filename: "bundle.js"
|
||||
path: path.resolve(__dirname, "dist"),
|
||||
filename: "bundle.js",
|
||||
devtoolModuleFilenameTemplate: "[id]"
|
||||
},
|
||||
module: {
|
||||
loaders: [
|
||||
{ test: /\.css$/, loader: "style!css" },
|
||||
rules: [
|
||||
/* {
|
||||
test: /\.css$/,
|
||||
use: "style!css"
|
||||
}*/
|
||||
]
|
||||
},
|
||||
optimization: {
|
||||
removeAvailableModules: true,
|
||||
removeEmptyChunks: true,
|
||||
mergeDuplicateChunks: true,
|
||||
flagIncludedChunks: true,
|
||||
occurrenceOrder: true,
|
||||
sideEffects: true,
|
||||
providedExports: false,
|
||||
usedExports: false,
|
||||
concatenateModules: false,
|
||||
namedModules: false,
|
||||
namedChunks: false,
|
||||
minimize: false,
|
||||
portableRecords: true
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user