From a9093ac42af7e28b4b157b7641d9b20dce438ef2 Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Tue, 25 Jul 2017 06:32:07 -0300 Subject: [PATCH] Updated the installation script accordingly to https://github.com/Microsoft/vscode/issues/30909 instructions and added binaries folders to CodeTextStudio.sublime-project from vscode/.gitignore --- CodeTextStudio.sublime-project | 10 ++++++++++ README.MD | 24 ++++++++++++++++++++---- 2 files changed, 30 insertions(+), 4 deletions(-) diff --git a/CodeTextStudio.sublime-project b/CodeTextStudio.sublime-project index 4f194d2..049242a 100644 --- a/CodeTextStudio.sublime-project +++ b/CodeTextStudio.sublime-project @@ -14,6 +14,16 @@ ], "folder_exclude_patterns": [ + "out", + "coverage", + "node_modules", + "out-build", + "out-editor", + "out-editor-min", + "out-monaco-editor-core", + "out-vscode", + "out-vscode-min", + "build/node_module", "settings/Cache", "settings/CachedData", "settings/GPUCache", diff --git a/README.MD b/README.MD index a85c5ee..a93f0a6 100644 --- a/README.MD +++ b/README.MD @@ -63,9 +63,17 @@ printf "Success\!\n" 1. Working on... ```shell # Download the required files -git clone --recursive -j8 https://github.com/evandrocoan/VSCodeStudio +git clone --recursive -j8 https://github.com/evandrocoan/CodeTextStudio +cd CodeTextStudio/vscode -Working on... +# https://github.com/Microsoft/vscode/issues/30909 +git clean -xfd . +git pull +./scripts/npm.sh install + +# https://unix.stackexchange.com/questions/3886/difference-between-nohup-disown-and +npm run watch & +./code # Success printf "Success\\!\n" @@ -95,9 +103,17 @@ Requirements for `Windows` systems are: 1. Working on... ```batch :: Download the required files -git clone --recursive -j8 https://github.com/evandrocoan/VSCodeStudio +git clone --recursive -j8 https://github.com/evandrocoan/CodeTextStudio +cd CodeTextStudio\vscode -Working on... +:: https://github.com/Microsoft/vscode/issues/30909 +git clean -xfd . +git pull +.\scripts\npm.bat install + +:: https://superuser.com/questions/1069972/windows-run-process-on-background-after-closing-cmd +start /B npm run watch +.\code :: Success echo "Success\\!\n"