-
-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added support for basic glob patterns in "inputFile" #199
Conversation
This allows the "inputFile" attribute of each config to include the glob characters: *? Any file which matches the glob pattern will be compiled. The "outputFile" attribute is ignored and instead the sourceFile's path is used as the output file, but with the extension changed to the compiled extension. e.g. less --> css Saving the compilerconfig.json currently does not compile all matching files in the project.
Further problem caused by glob patterns.
return ".es5.js"; | ||
|
||
default: | ||
return ".css"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that looks a bit tricky.
edit: I see it was already there
Shouldn't it work like this: If |
I'm unsure. What I read from the comments in issue #49 is that your users Perhaps other could comment on their perspective?
|
+1 a way to restore Web Essentials 2013 functionality of auto compiling all files in the same directory with the same filename. |
yes please +1 |
+1 |
Another +1 vote! This is sorely needed. |
@madskristensen What should be changed to get this merged/accepted? |
@304NotModified it contains conflicts that prohibits me from merging the PR. |
Wow, it's surprising to see this very basic regression not being fixed in almost 2 years. |
I can rebase this (and create a new PR), could someone test it? |
Personally, I gave up and moved to vs code (and built the EasyLESS
extension for it instead)
…On Tue, 4 Jul 2017 at 8:41 AM, Julian Verdurmen ***@***.***> wrote:
I can rebase this (and create a new PR), could someone test it?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#199 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABtooIX0-nTfPrEaQO5BWApfqLnZYVCiks5sKVHbgaJpZM4H0-a8>
.
|
VS code is nice, but it's a bit pain to use 2 IDEs (VS + VS code), also we need this on the CI server. |
I am rebasing this right now and will test. |
👍 |
This allows the "inputFile" attribute of each config to include the glob
characters: *?
Any file which matches the glob pattern will be compiled. The
"outputFile" attribute is ignored and instead the sourceFile's path is
used as the output file, but with the extension changed to the compiled
extension. e.g. less --> css
Saving the compilerconfig.json currently does not compile all matching
files in the project.