Denny Shimkoski
Denny Shimkoski
@jaimesangcap You can use `nohoist` to get around this problem. For example, in a package.json: ``` { "private": true, "workspaces": { "packages": [ "packages/*" ], "nohoist": [ "**/@bahmutov/add-typescript-to-cypress", "**/@bahmutov/add-typescript-to-cypress/**" ]...
I'm having a problem with exceptions too. ``` var holiday = new Date(2014,7,27); var sched = later.parse.recur() .on([2,3,4]).dayOfWeek() .except() .after(holiday).fullDate() .before(later.day.end(holiday)).fullDate(); console.log(later.schedule(sched).next(10)); ``` I'm expecting the 27th to be excluded,...
Thanks! That turned out to be a much better approach for my app. Including an example here for fellow travelers... ``` function exceptUsHolidays(schedule) { return schedule.except() // new year's and...
I should also add that I can't upgrade node because 0.8.x freezes randomly on XP. And I can't upgrade XP. And, yes, I am sad about this. :)
My main use case at the moment is browser automation for dev productivity tools, so stability isn't a huge concern. If we decide to use this for acceptance testing as...
As an aside, is it possible to perform multiple file check / overwrite prompts like this in sequence in a single recipe or do I have to break them up...