Skip to content

Commit 722ebb9

Browse files
committed
Implement fs module (#3)
* Implements the fs module * Add stats object * Add not implemented to createWriteStream * Update mkdtemp to use tmp dir * Unexport Stats * Add client web socket for commands and restructure
1 parent 636a270 commit 722ebb9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+10467
-2274
lines changed

package.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@
55
"license": "TBD",
66
"description": "VS Code in the cloud.",
77
"scripts": {
8+
"build:rules": "cd ./rules && tsc -p .",
89
"vscode:clone": "mkdir -p ./lib && test -d ./lib/vscode || git clone https://github.com/Microsoft/vscode/ ./lib/vscode",
910
"vscode:install": "cd ./lib/vscode && git checkout tags/1.30.1 && yarn",
1011
"vscode": "npm-run-all vscode:*",
11-
"packages:install": "cd ./packages && yarn",
12-
"postinstall": "npm-run-all --parallel vscode packages:install",
12+
"packages:install": "cd ./packages && yarn && ts-node ../scripts/install-packages.ts",
13+
"postinstall": "npm-run-all --parallel vscode packages:install build:rules",
1314
"start": "webpack-dev-server --hot --config ./webpack.config.app.js",
1415
"test": "cd ./packages && yarn test"
1516
},
@@ -30,7 +31,10 @@
3031
"sass-loader": "^7.1.0",
3132
"style-loader": "^0.23.1",
3233
"ts-loader": "^5.3.3",
34+
"ts-node": "^7.0.1",
35+
"tslint": "^5.12.1",
3336
"typescript": "^3.2.2",
37+
"typescript-tslint-plugin": "^0.2.1",
3438
"uglifyjs-webpack-plugin": "^2.1.1",
3539
"webpack": "^4.28.4",
3640
"webpack-bundle-analyzer": "^3.0.3",

packages/electron-browser/package.json

-8
This file was deleted.

0 commit comments

Comments
 (0)