-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update extension to the latest version of the playground
This is a very big update. It includes various changes: * The playground version was updated to include all the latest improvements. * Because of a refactor, no web workers were needed anymore inside VSCode. Instead, the web workers are running directly in the web view instead. * The development/release configuration was changed significantly to make things easier.
- Loading branch information
Showing
10 changed files
with
3,114 additions
and
4,377 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,13 @@ | ||
.vscode/** | ||
.vscode-test/** | ||
out/ | ||
src/** | ||
images/screenshot.png | ||
.gitignore | ||
.yarnrc | ||
vsc-extension-quickstart.md | ||
**/tsconfig.json | ||
**/.eslintrc.json | ||
**/*.map | ||
**/*.ts | ||
webpack.config.js | ||
preview/playground/resources | ||
preview/playground/.* | ||
preview/playground/*.tar.gz | ||
preview/playground/*.go | ||
preview/playground/dashboard.* | ||
preview/playground/Dockerfile | ||
preview/playground/go.* | ||
preview/playground/Makefile | ||
preview/playground/index.html | ||
preview/playground/project.js | ||
# Ignore everything | ||
** | ||
|
||
# Include specific files | ||
!LICENSE | ||
!out/*.js | ||
!images/tinygo-logo.png | ||
!preview/webview.* | ||
!preview/playground/LICENSE | ||
!preview/playground/simulator.* | ||
!preview/playground/parts/ | ||
!preview/playground/resources/ | ||
!preview/playground/worker/webworker.bundle.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.PHONY: webworker.bundle.js | ||
webworker.bundle.js: preview/playground/worker/webworker.bundle.js | ||
|
||
# Create webworker.bundle.js by combining these files. | ||
# There's probably a better way to do this using webpack but this works. | ||
preview/playground/worker/webworker.bundle.js: preview/playground/worker/parts.js preview/playground/worker/runner.js preview/playground/worker/wiring.js preview/playground/worker/webworker.js | ||
cat $^ > $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.