-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Add svelte 3 support #1820
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add svelte 3 support #1820
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
a63bea7
add svelte3 first try
SaraVieira 958b5af
try again
SaraVieira 43f9450
add svelte extension; update logo
SaraVieira 9024aaa
Don't compile svelte files
CompuIves 87acb08
ts update
SaraVieira 3779b1b
add icon
SaraVieira 9de30b9
add SOME error handling
SaraVieira 89a3e40
fix eslint?
SaraVieira 4c55353
Update the svelte vscode extension to have LSP
CompuIves 06688f1
fixes from pr review
SaraVieira c035aa0
fix older verwsins
SaraVieira a08f869
Svelte Improvements
CompuIves e0cf7ee
Put v3 code generation on top
CompuIves 38b6ec1
Merge branch 'master' into svelte3
CompuIves 1aa185f
Update standalone-packages/codesandbox-browserfs/src/generic/file_ind…
pshrmn 8393368
add version automacially from installed version
SaraVieira 6384b29
make svelte app downloadable and deployable
SaraVieira File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
3 changes: 2 additions & 1 deletion
3
packages/app/src/app/pages/Sandbox/Editor/Content/Tabs/ModuleTab/index.js
This file contains hidden or 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
This file contains hidden or 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
3 changes: 2 additions & 1 deletion
3
.../app/pages/Sandbox/Editor/Workspace/Files/DirectoryEntry/DirectoryChildren/ModuleEntry.js
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Binary file modified
BIN
-790 Bytes
(61%)
packages/app/src/app/store/providers/Utils/create-zip/svelte/files.zip
Binary file not shown.
This file contains hidden or 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
File renamed without changes.
This file contains hidden or 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
This file contains hidden or 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
28 changes: 28 additions & 0 deletions
28
packages/app/src/app/vscode/extensionHostWorker/bootstrappers/svelte-worker.ts
This file contains hidden or 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,28 @@ | ||
| import * as child_process from 'node-services/lib/child_process'; | ||
|
|
||
| // @ts-ignore | ||
| import SubWorkLoader from 'worker-loader?publicPath=/&name=sub-dynamic-worker.[hash:8].worker.js!./generic-2'; | ||
| import { initializeAll } from '../common/global'; | ||
| import { EXTENSIONS_LOCATION } from '../../constants'; | ||
| declare var __DEV__: boolean; | ||
|
|
||
| child_process.addDefaultForkHandler(SubWorkLoader); | ||
|
|
||
| initializeAll().then(async () => { | ||
| // Use require so that it only starts executing the chunk with all globals specified. | ||
| require('../workers/generic-worker').start({ | ||
| syncSandbox: true, | ||
| syncTypes: true, | ||
| extraMounts: { | ||
| '/extensions': { | ||
| fs: 'BundledHTTPRequest', | ||
| options: { | ||
| index: EXTENSIONS_LOCATION + '/extensions/index.json', | ||
| baseUrl: EXTENSIONS_LOCATION + '/extensions', | ||
| bundle: EXTENSIONS_LOCATION + '/bundles/svelte.0.7.1.min.json', | ||
| logReads: __DEV__, | ||
| }, | ||
| }, | ||
| }, | ||
| }); | ||
| }); |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.