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.
This PR implements some required tooling in order to make #186 PR possible for being fixed and it also changes the default behavior of pyp5js when it comes to static files.
Currently,
pyp5js
copies ap5.min.js
file to the every new sketch'sstatic
dir. This wasn't a problem until Pyodide, which has more the 10MB of JS related files. To copy 10MB per sketch would be abusive with our users HDs and thus, from the very beginning,pyp5js
used CDN as ourpyodide
serve. The #186 was created as an alternative to that for the web editor.During the process I realized that:
pyp5js new --local
) too;This PR implements all the changes on this directions and leave TODO notes to map what should be done when it comes to pyodide local copies.