Update parcel 2
This commit is contained in:
parent
617c44d40e
commit
18c6a97ae7
|
@ -4,3 +4,7 @@ users.json
|
|||
frontend/node_modules/
|
||||
frontend/.cache/
|
||||
__pychache__
|
||||
.parcel-cache/
|
||||
frontend/.parcel-cache/
|
||||
frontend/dist/
|
||||
package-lock.json
|
|
@ -2,6 +2,7 @@ version: '3.7'
|
|||
|
||||
services:
|
||||
console:
|
||||
build: ./
|
||||
container_name: console
|
||||
image: magmise/console
|
||||
volumes:
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -2,19 +2,19 @@
|
|||
"name": "client",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"console.js": "^2.0.1",
|
||||
"parcel": "^1.12.4",
|
||||
"xterm": "^4.9.0",
|
||||
"xterm-addon-attach": "^0.6.0",
|
||||
"xterm-addon-fit": "^0.4.0",
|
||||
"xterm-addon-search": "^0.7.0"
|
||||
"xterm": "latest",
|
||||
"xterm-addon-attach": "latest",
|
||||
"xterm-addon-fit": "latest",
|
||||
"xterm-addon-search": "latest"
|
||||
},
|
||||
"devDependencies": {
|
||||
"parcel-bundler": "latest"
|
||||
"parcel": "^2.0.0"
|
||||
},
|
||||
"source": "src/index.html",
|
||||
"scripts": {
|
||||
"build": "parcel build src/index.html --out-dir ../public",
|
||||
"watch": "parcel watch src/index.html --out-dir ../public"
|
||||
"start": "parcel",
|
||||
"build": "parcel build src/index.html --dist-dir ../public",
|
||||
"watch": "parcel watch src/index.html --dist-dir ../public"
|
||||
},
|
||||
"browserslist": [
|
||||
"last 3 and_chr versions",
|
||||
|
|
|
@ -18,9 +18,6 @@
|
|||
<input type="text" name="send" value="">
|
||||
</form>
|
||||
|
||||
<console-component></console-component>
|
||||
|
||||
<script src="main.js"></script>
|
||||
<script src="console.js"></script>
|
||||
<script type="module" src="main.js"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -2,7 +2,6 @@ import { Terminal } from 'xterm';
|
|||
import { AttachAddon } from 'xterm-addon-attach';
|
||||
import { FitAddon } from 'xterm-addon-fit';
|
||||
import { SearchAddon } from 'xterm-addon-search';
|
||||
import 'console.js';
|
||||
|
||||
function main() {
|
||||
const urlParams = new URLSearchParams(window.location.search);
|
||||
|
|
Loading…
Reference in New Issue