You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to run gulp before I run my tests. My first idea was to simply run a script during the prepare phase. But that script is run before bower and node dependencies are restored, so I'm missing those.
I could just run my script in the test phase, but that doesn't seem like the right place.
I assumed that I could control this behavior by re-ordering the plugins for the branch, but that has no effect on the order of these actions.
I can see how some people would like to run a certain action before cached modules are restored and how others would like to do that after they're restored. So, is there a way?
The text was updated successfully, but these errors were encountered:
When you're using strider.json to control your strider config, the plugins you configure in there are pushed to the top of the plugin stack, so they always run first.
And I just got a tiny bit smarter :P Not using merge_plugins in strider.json will obviously, not merge the configurations.
So you just have to configure all plugins in strider.json and then only the order in strider.json matters.
Now, what is actually the desired behavior here? Should people override their web config with strider.json? Should one extend the other? If so, which one's the root?
I want to run
gulp
before I run my tests. My first idea was to simply run a script during the prepare phase. But that script is run before bower and node dependencies are restored, so I'm missing those.I could just run my script in the test phase, but that doesn't seem like the right place.
I assumed that I could control this behavior by re-ordering the plugins for the branch, but that has no effect on the order of these actions.
I can see how some people would like to run a certain action before cached modules are restored and how others would like to do that after they're restored. So, is there a way?
The text was updated successfully, but these errors were encountered: