-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3fca870
Showing
2,743 changed files
with
176,888 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"plugins": [ | ||
"@babel/plugin-syntax-dynamic-import", | ||
"@babel/plugin-proposal-object-rest-spread", | ||
["react-intl", { | ||
"messagesDir": "./translations/messages/" | ||
}]], | ||
"presets": [ | ||
["@babel/preset-env"], | ||
"@babel/preset-react" | ||
] | ||
} |
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,6 @@ | ||
chrome >= 70 | ||
chromeandroid >= 70 | ||
ios >= 12 | ||
safari >= 12 | ||
edge >= 18 | ||
firefox >= 68 |
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,11 @@ | ||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
charset = utf-8 | ||
indent_size = 4 | ||
trim_trailing_whitespace = true | ||
|
||
[*.{js,html}] | ||
indent_style = space |
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,11 @@ | ||
node_modules/* | ||
build/* | ||
dist/* | ||
test/* | ||
src/examples/* | ||
|
||
# Files vendored from upstreams | ||
src/addons/addons | ||
src/addons/libraries | ||
src/addons/api-libraries | ||
src/addons/generated |
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,3 @@ | ||
module.exports = { | ||
extends: ['scratch', 'scratch/node', 'scratch/es6'] | ||
}; |
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,41 @@ | ||
# Set the default behavior, in case people don't have core.autocrlf set. | ||
* text=auto | ||
|
||
# Explicitly specify line endings for as many files as possible. | ||
# People who (for example) rsync between Windows and Linux need this. | ||
|
||
# File types which we know are binary | ||
|
||
# Treat SVG files as binary so that their contents don't change due to line | ||
# endings. The contents of SVGs must not change from the way they're stored | ||
# on assets.scratch.mit.edu so that MD5 calculations don't change. | ||
*.svg binary | ||
|
||
# Prefer LF for most file types | ||
*.css text eol=lf | ||
*.frag text eol=lf | ||
*.htm text eol=lf | ||
*.html text eol=lf | ||
*.iml text eol=lf | ||
*.js text eol=lf | ||
*.js.map text eol=lf | ||
*.json text eol=lf | ||
*.json5 text eol=lf | ||
*.jsx text eol=lf | ||
*.md text eol=lf | ||
*.vert text eol=lf | ||
*.xml text eol=lf | ||
*.yml text eol=lf | ||
|
||
# Prefer LF for these files | ||
.editorconfig text eol=lf | ||
.eslintrc text eol=lf | ||
.gitattributes text eol=lf | ||
.gitignore text eol=lf | ||
.gitmodules text eol=lf | ||
LICENSE text eol=lf | ||
Makefile text eol=lf | ||
README text eol=lf | ||
TRADEMARK text eol=lf | ||
|
||
# Use CRLF for Windows-specific file types |
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,15 @@ | ||
### Expected Behavior | ||
|
||
_Please describe what should happen_ | ||
|
||
### Actual Behavior | ||
|
||
_Describe what actually happens_ | ||
|
||
### Steps to Reproduce | ||
|
||
_Explain what someone needs to do in order to see what's described in *Actual behavior* above_ | ||
|
||
### Operating System and Browser | ||
|
||
_e.g. Mac OS 10.11.6 Safari 10.0_ |
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,39 @@ | ||
### Resolves | ||
|
||
_What Github issue does this resolve (please include link)?_ | ||
|
||
- Resolves # | ||
|
||
### Proposed Changes | ||
|
||
_Describe what this Pull Request does_ | ||
|
||
### Reason for Changes | ||
|
||
_Explain why these changes should be made_ | ||
|
||
### Test Coverage | ||
|
||
_Please show how you have added tests to cover your changes_ | ||
|
||
### Browser Coverage | ||
Check the OS/browser combinations tested (At least 2) | ||
|
||
Mac | ||
* [ ] Chrome | ||
* [ ] Firefox | ||
* [ ] Safari | ||
|
||
Windows | ||
* [ ] Chrome | ||
* [ ] Firefox | ||
* [ ] Edge | ||
|
||
Chromebook | ||
* [ ] Chrome | ||
|
||
iPad | ||
* [ ] Safari | ||
|
||
Android Tablet | ||
* [ ] Chrome |
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,13 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
allow: | ||
- dependency-name: "@turbowarp/*" | ||
- dependency-name: "scratch-audio" | ||
- dependency-name: "scratch-render" | ||
- dependency-name: "alpha-vm" | ||
- dependency-name: "scratch-paint" | ||
- dependency-name: "scratch-blocks" |
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,28 @@ | ||
# Mac OS | ||
.DS_Store | ||
|
||
# NPM | ||
/node_modules | ||
npm-* | ||
|
||
# Testing | ||
/.nyc_output | ||
/coverage | ||
|
||
# Build | ||
/build | ||
/dist | ||
/.opt-in | ||
|
||
# Generated translation files | ||
/translations | ||
/locale | ||
|
||
# Other generated source | ||
/src/generated | ||
|
||
# Downloaded during "npm install" | ||
/static/microbit | ||
|
||
# for act | ||
.secrets |
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,18 @@ | ||
# Mac OS | ||
.DS_Store | ||
|
||
# NPM | ||
/node_modules | ||
npm-* | ||
|
||
# Testing | ||
/.nyc_output | ||
/coverage | ||
/test | ||
|
||
# Build | ||
/.opt-in | ||
/build | ||
|
||
# generated translation files | ||
/translations |
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 @@ | ||
v16 |
Oops, something went wrong.