Commit a8bb23f5 by Iwasaki Yudai

Rename bundle.js to gotty-bundle.js

1 parent 27b64361
......@@ -7,7 +7,7 @@ gotty: server/asset.go main.go server/*.go webtty/*.go backend/*.go Makefile
asset: server/asset.go
server/asset.go: bindata/static/js/bundle.js bindata/static/index.html bindata/static/favicon.png bindata/static/css/index.css bindata/static/css/xterm.css bindata/static/css/xterm_customize.css
server/asset.go: bindata/static/js/gotty-bundle.js bindata/static/index.html bindata/static/favicon.png bindata/static/css/index.css bindata/static/css/xterm.css bindata/static/css/xterm_customize.css
go-bindata -prefix bindata -pkg server -ignore=\\.gitkeep -o server/asset.go bindata/...
gofmt -w server/asset.go
......@@ -27,8 +27,8 @@ bindata/static/js: bindata/static
mkdir -p bindata/static/js
bindata/static/js/bundle.js: bindata/static/js js/dist/bundle.js
cp js/dist/bundle.js bindata/static/js/bundle.js
bindata/static/js/gotty-bundle.js: bindata/static/js js/dist/gotty-bundle.js
cp js/dist/gotty-bundle.js bindata/static/js/gotty-bundle.js
bindata/static/css: bindata/static
mkdir -p bindata/static/css
......@@ -46,7 +46,7 @@ js/node_modules/xterm/dist/xterm.css:
cd js && \
npm install
js/dist/bundle.js:
js/dist/gotty-bundle.js:
cd js && \
webpack
......
This diff could not be displayed because it is too large.
......@@ -23983,4 +23983,4 @@ exports.contains = contains;
/***/ })
/******/ ]);
//# sourceMappingURL=bundle.js.map
\ No newline at end of file
//# sourceMappingURL=gotty-bundle.js.map
\ No newline at end of file
This diff could not be displayed because it is too large.
module.exports = {
entry: "./src/main.ts",
output: {
filename: "./dist/bundle.js"
filename: "./dist/gotty-bundle.js"
},
devtool: "source-map",
resolve: {
......
......@@ -11,6 +11,6 @@
<div id="terminal"></div>
<script src="./auth_token.js"></script>
<script src="./config.js"></script>
<script src="./js/bundle.js"></script>
<script src="./js/gotty-bundle.js"></script>
</body>
</html>
This diff could not be displayed because it is too large.
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!