Skip to content

Commit d4fce3a

Browse files
code-asherkylecarbs
authored andcommitted
FuseBox didn't work out
1 parent 38c8493 commit d4fce3a

File tree

15 files changed

+3287
-1367
lines changed

15 files changed

+3287
-1367
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
.fusebox
21
lib/vscode
32
node_modules
43
dist

fuse.js

-19
This file was deleted.

package.json

+21-3
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,32 @@
1010
"vscode": "npm-run-all vscode:*",
1111
"packages:install": "cd ./packages && yarn",
1212
"postinstall": "npm-run-all --parallel vscode packages:install",
13-
"start": "node fuse.js",
13+
"start": "webpack-dev-server --hot --config ./webpack.config.app.js",
1414
"test": "cd ./packages && yarn test"
1515
},
1616
"devDependencies": {
1717
"@types/node": "^10.12.18",
18-
"fuse-box": "^3.6.0",
18+
"crypto-browserify": "^3.12.0",
19+
"css-loader": "^2.1.0",
20+
"file-loader": "^3.0.1",
21+
"fork-ts-checker-webpack-plugin": "^0.5.2",
22+
"happypack": "^5.0.1",
23+
"html-webpack-plugin": "^3.2.0",
24+
"http-browserify": "^1.7.0",
25+
"mini-css-extract-plugin": "^0.5.0",
1926
"node-sass": "^4.11.0",
2027
"npm-run-all": "^4.1.5",
21-
"typescript": "^3.2.2"
28+
"os-browserify": "^0.3.0",
29+
"preload-webpack-plugin": "^3.0.0-beta.2",
30+
"sass-loader": "^7.1.0",
31+
"style-loader": "^0.23.1",
32+
"ts-loader": "^5.3.3",
33+
"typescript": "^3.2.2",
34+
"uglifyjs-webpack-plugin": "^2.1.1",
35+
"webpack": "^4.28.4",
36+
"webpack-bundle-analyzer": "^3.0.3",
37+
"webpack-cli": "^3.2.1",
38+
"webpack-dev-server": "^3.1.14",
39+
"write-file-webpack-plugin": "^4.5.0"
2240
}
2341
}

packages/app/src/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
<div class="message">
4444
</div>
4545
</div>
46-
$bundles
4746
</body>
4847

4948
</html>

packages/app/src/index.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
import { logger } from "@coder/logger";
12
import "./index.scss";
23

4+
logger.info("Starting app");
5+
36
const overlay = document.getElementById("overlay");
47
const logo = document.getElementById("logo");
58
if (overlay && logo) {
@@ -10,3 +13,5 @@ if (overlay && logo) {
1013
logo.style.transform = `perspective(200px) rotateX(${yPos}deg) rotateY(${xPos}deg)`;
1114
});
1215
}
16+
17+
import "@coder/vscode";

packages/disposable/yarn.lock

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+

0 commit comments

Comments
 (0)