devatherock / minify-js

Minify html, javascript and css files.
https://github.com/marketplace/actions/html-css-js-minifier
MIT License
10 stars 3 forks source link

Directory structure junked #4

Closed necaran closed 1 year ago

necaran commented 2 years ago

This action is efficient, faster than other similar ones. But the folder structure from the source directory is complete ignored. Everything is at depth 1 in the output directory. For example when you have this in the source directory.

src
├── css
│   └── style.css
├── js
│   └── main.js
└── index.html

The output directory end up like this.

out
├── index.html
├── main.js
└── style.css