WebLoader icon indicating copy to clipboard operation
WebLoader copied to clipboard

tempPath parameter in Neon is not taken in css and js section separately

Open ajaxovic opened this issue 10 years ago • 2 comments

In Neon config:

webloader:
     css:
        default:
            tempDir: 'css/min'
            tempPath: 'css/min'
            files:
                - %wwwDir%/css/style.css
    js:
        default:
            tempDir: 'js/min'
            tempPath: 'js/min'
            files:
                - %wwwDir%/js/script.js

this will result into this urls is final html file:

<link rel="stylesheet" type="text/css" href="/mypages/www/js/min/cssloader-739f22122081.css"> <script type="text/javascript" src="/mypages/www/js/min/jsloader-e6ef6ebcc598.js"></script>

Problem is, that css want to download from js folder.

ajaxovic avatar Feb 04 '16 22:02 ajaxovic

I see. Can you please send a PR with fix?

fprochazka avatar Feb 07 '16 12:02 fprochazka

My programming skills are too far from even thinking about sending any pull request. Sorry...

Edit: OK, I tried. I did pull request fixing this issue. I hope I didn't do any mess..

ajaxovic avatar Feb 07 '16 19:02 ajaxovic