mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-18 12:15:44 +01:00
rm some files and change webpack
This commit is contained in:
parent
95cbd79fa9
commit
2d2236bc71
20
dist/main.bundle.js
vendored
20
dist/main.bundle.js
vendored
File diff suppressed because one or more lines are too long
313
dist/vendor.bundle.js
vendored
313
dist/vendor.bundle.js
vendored
File diff suppressed because one or more lines are too long
77
index.html
77
index.html
@ -1,77 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8"/>
|
|
||||||
<title>Bitburner</title>
|
|
||||||
<link rel="apple-touch-icon" sizes="180x180" href="dist/apple-touch-icon.png"/>
|
|
||||||
<link rel="icon" type="image/png" sizes="32x32" href="dist/favicon-32x32.png"/>
|
|
||||||
<link rel="icon" type="image/png" sizes="16x16" href="dist/favicon-16x16.png"/>
|
|
||||||
<link rel="manifest" href="dist/site.webmanifest"/>
|
|
||||||
<link rel="mask-icon" href="dist/safari-pinned-tab.svg" color="#000000"/>
|
|
||||||
<meta name="apple-mobile-web-app-title" content="Bitburner"/>
|
|
||||||
<meta name="application-name" content="Bitburner"/>
|
|
||||||
<meta name="msapplication-TileColor" content="#000000"/>
|
|
||||||
<meta name="msapplication-config" content="dist/browserconfig.xml"/>
|
|
||||||
<meta name="theme-color" content="#ffffff"/>
|
|
||||||
<!-- MONACO JS -->
|
|
||||||
<link rel="stylesheet" data-name="vs/editor/editor.main" href="dist/ext/monaco-editor/min/vs/editor/editor.main.css"/>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
var require = { paths: { vs: "dist/ext/monaco-editor/min/vs", "monaco-vim": "dist/ext/monaco-vim" } };
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script src="dist/ext/monaco-editor/min/vs/loader.js"></script>
|
|
||||||
<script src="dist/ext/monaco-editor/min/vs/editor/editor.main.nls.js"></script>
|
|
||||||
<script src="dist/ext/monaco-editor/min/vs/editor/editor.main.js"></script>
|
|
||||||
<script src="dist/ext/monaco-vim.js"></script>
|
|
||||||
|
|
||||||
<!-- Google Analytics -->
|
|
||||||
<script>
|
|
||||||
(function (i, s, o, g, r, a, m) {
|
|
||||||
i["GoogleAnalyticsObject"] = r;
|
|
||||||
(i[r] =
|
|
||||||
i[r] ||
|
|
||||||
function () {
|
|
||||||
(i[r].q = i[r].q || []).push(arguments);
|
|
||||||
}),
|
|
||||||
(i[r].l = 1 * new Date());
|
|
||||||
(a = s.createElement(o)), (m = s.getElementsByTagName(o)[0]);
|
|
||||||
a.async = 1;
|
|
||||||
a.src = g;
|
|
||||||
m.parentNode.insertBefore(a, m);
|
|
||||||
})(window, document, "script", "https://www.google-analytics.com/analytics.js", "ga");
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
ga("create", "UA-100157497-1", "auto");
|
|
||||||
ga("send", "pageview");
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style>
|
|
||||||
html, body {
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
body {
|
|
||||||
background-color: black;
|
|
||||||
}
|
|
||||||
* {
|
|
||||||
-ms-overflow-style: none; /* for Internet Explorer, Edge */
|
|
||||||
scrollbar-width: none; /* for Firefox */
|
|
||||||
}
|
|
||||||
.myGlyphMarginClass {
|
|
||||||
background: red;
|
|
||||||
}
|
|
||||||
.myContentClass {
|
|
||||||
background: lightblue;
|
|
||||||
}
|
|
||||||
*::-webkit-scrollbar {
|
|
||||||
display: none; /* for Chrome, Safari, and Opera */
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<link rel="shortcut icon" href="favicon.ico"></head>
|
|
||||||
<body>
|
|
||||||
<div id="root"/>
|
|
||||||
<script type="text/javascript" src="dist/vendor.bundle.js"></script><script type="text/javascript" src="dist/main.bundle.js"></script></body>
|
|
||||||
</html>
|
|
@ -46,6 +46,48 @@ module.exports = (env, argv) => {
|
|||||||
// https://stackoverflow.com/a/38401256
|
// https://stackoverflow.com/a/38401256
|
||||||
const commitHash = require("child_process").execSync("git rev-parse --short HEAD").toString().trim();
|
const commitHash = require("child_process").execSync("git rev-parse --short HEAD").toString().trim();
|
||||||
|
|
||||||
|
const htmlConfig = {
|
||||||
|
title: "Bitburner",
|
||||||
|
template: "src/index.html",
|
||||||
|
favicon: "favicon.ico",
|
||||||
|
googleAnalytics: {
|
||||||
|
trackingId: "UA-100157497-1",
|
||||||
|
},
|
||||||
|
meta: {},
|
||||||
|
minify: isDevelopment
|
||||||
|
? false
|
||||||
|
: {
|
||||||
|
collapseBooleanAttributes: true,
|
||||||
|
collapseInlineTagWhitespace: false,
|
||||||
|
collapseWhitespace: false,
|
||||||
|
conservativeCollapse: false,
|
||||||
|
html5: true,
|
||||||
|
includeAutoGeneratedTags: false,
|
||||||
|
keepClosingSlash: true,
|
||||||
|
minifyCSS: false,
|
||||||
|
minifyJS: false,
|
||||||
|
minifyURLs: false,
|
||||||
|
preserveLineBreaks: false,
|
||||||
|
preventAttributesEscaping: false,
|
||||||
|
processConditionalComments: false,
|
||||||
|
quoteCharacter: '"',
|
||||||
|
removeAttributeQuotes: false,
|
||||||
|
removeComments: false,
|
||||||
|
removeEmptyAttributes: false,
|
||||||
|
removeEmptyElements: false,
|
||||||
|
removeOptionalTags: false,
|
||||||
|
removeScriptTypeAttributes: false,
|
||||||
|
removeStyleLinkTypeAttributes: false,
|
||||||
|
removeTagWhitespace: false,
|
||||||
|
sortAttributes: false,
|
||||||
|
sortClassName: false,
|
||||||
|
useShortDoctype: false,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
if (!isDevelopment) {
|
||||||
|
htmlConfig.filename = "../index.html";
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
plugins: [
|
plugins: [
|
||||||
new webpack.DefinePlugin({
|
new webpack.DefinePlugin({
|
||||||
@ -60,45 +102,7 @@ module.exports = (env, argv) => {
|
|||||||
jQuery: "jquery",
|
jQuery: "jquery",
|
||||||
$: "jquery",
|
$: "jquery",
|
||||||
}),
|
}),
|
||||||
new HtmlWebpackPlugin({
|
new HtmlWebpackPlugin(htmlConfig),
|
||||||
title: "Bitburner",
|
|
||||||
template: "src/index.html",
|
|
||||||
filename: "../index.html",
|
|
||||||
favicon: "favicon.ico",
|
|
||||||
googleAnalytics: {
|
|
||||||
trackingId: "UA-100157497-1",
|
|
||||||
},
|
|
||||||
meta: {},
|
|
||||||
minify: isDevelopment
|
|
||||||
? false
|
|
||||||
: {
|
|
||||||
collapseBooleanAttributes: true,
|
|
||||||
collapseInlineTagWhitespace: false,
|
|
||||||
collapseWhitespace: false,
|
|
||||||
conservativeCollapse: false,
|
|
||||||
html5: true,
|
|
||||||
includeAutoGeneratedTags: false,
|
|
||||||
keepClosingSlash: true,
|
|
||||||
minifyCSS: false,
|
|
||||||
minifyJS: false,
|
|
||||||
minifyURLs: false,
|
|
||||||
preserveLineBreaks: false,
|
|
||||||
preventAttributesEscaping: false,
|
|
||||||
processConditionalComments: false,
|
|
||||||
quoteCharacter: '"',
|
|
||||||
removeAttributeQuotes: false,
|
|
||||||
removeComments: false,
|
|
||||||
removeEmptyAttributes: false,
|
|
||||||
removeEmptyElements: false,
|
|
||||||
removeOptionalTags: false,
|
|
||||||
removeScriptTypeAttributes: false,
|
|
||||||
removeStyleLinkTypeAttributes: false,
|
|
||||||
removeTagWhitespace: false,
|
|
||||||
sortAttributes: false,
|
|
||||||
sortClassName: false,
|
|
||||||
useShortDoctype: false,
|
|
||||||
},
|
|
||||||
}),
|
|
||||||
new MiniCssExtractPlugin({
|
new MiniCssExtractPlugin({
|
||||||
filename: "[name].css",
|
filename: "[name].css",
|
||||||
}),
|
}),
|
||||||
|
Loading…
Reference in New Issue
Block a user