We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I want to have a /project/src/ folder with my project modules and have a /project/yui3/src with the source code for YUI modules.
Shifter should be able to handle both folders during build and watch.
The text was updated successfully, but these errors were encountered:
I'm not totally sure on this one, what are you expecting shifter to do here?
shifter
You "could" add a custom "postexec" to your global config, that would then call shifter in a sub directory.
Something like this:
{ "name": "foo", "postexec": [ "./buildyui.sh" ], "builds": { } }
Then in buildyui.sh (or js).
buildyui.sh
js
cd ../yui3/src/loader; shifter
Or something along those lines, then when you --watch the foo build, after it's done it will execute the postexec and build what you need in yui.
--watch
foo
postexec
Sorry, something went wrong.
I've just noticed this issue - this may now be possible with the --recurse option we just added in #50
On the other hand, I may be completely misunderstanding the use-case here ;)
davglass
No branches or pull requests
I want to have a /project/src/ folder with my project modules and have a /project/yui3/src with the source code for YUI modules.
Shifter should be able to handle both folders during build and watch.
The text was updated successfully, but these errors were encountered: