All notable changes to the PyScript CLI will be documented in this file, with the latest release at the top.
A lot has changed between 0.2.5 and 0.3.6. This is a summary of the most important changes.
- New command
runto run a local server which serves the current directory.- Added the right CORS headers to the server running locally
- Added no-cache headers to the server running locally to avoid caching issues while developing
- Allow users to specify an empty author name, email and app description when running
pyscript create - Merged
wrapcommand intocreatecommand, so nowpyscript createcan create a new project or wrap an existing python file into a new pyscript project. - The
pyscript createcommand now prompts for a name if the name is not provided as an argument. - You can now pass a single Python file to
pyscript createand it will create a new project with the file's contents in the newmain.pyfile - similar to using the--wrapoption.
- Various improvements to the
README.mdfiles - Added
CONTRIBUTING.mdfile with information on how to contribute to the project and installing the development environment. - Added
CHANGELOG.mdfile to keep track of the changes in the project.