Minify recursively
See original GitHub issueIt’s probably a hard feature request, but would be great run “pyminify -r hello.py
” to minify the file & the libraries its using
e.g. for projects with a lot of dependencies which want to have a .exe or even a .apk, as kivy projects (they tend to be much bigger than normal apks)
is it viable?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:3
- Comments:5 (2 by maintainers)
Top Results From Across the Web
recursive-minify - npm
Start using recursive-minify in your project by running `npm i recursive-minify`. There are no other projects in the npm registry using ...
Read more >pitufo | Small app to recursively walk a directory and prettify ...
A small application that will walk the given path and replace the content of every json file found. The file will either be...
Read more >Minify recursive | npm.io
Minify javascript files on a folder recursively. js minifyesbuild minifyminify recursivejsmin. 1.0.0 • Published 1 year ago.
Read more >Recursively minify PHP files using a shell script - Cody Bonney
Below is a simple Shell Script I wrote that creates a copy of a directory and minifies all of the PHP files within...
Read more >Minify directories containing CSS and JS recursively with Yui ...
I have JS and CSS files scattered around many directories and sub-directories. I just want to specify the top project folder, inside which ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
2.6.0 has been released which allows specifying a directory as the path to process. All files ending in
.py
below that directory will be minified in place.@ntaraujo I would appreciate this function, too.
Anyway, as a quick an dirty solution, you can also run
from a shell to minify any Python files in the current directory in-place.