Irakli Safareli
Irakli Safareli
I don't understand, this is from package.json of lib [catalog](https://github.com/interactivethings/catalog/blob/master/package.json) ``` "bin": { "catalog": "dist/cli/bin/catalog.js", "catalog-start": "dist/cli/bin/catalog-start.js", "catalog-build": "dist/cli/bin/catalog-build.js" }, ``` it uses `args` and this fails ``` $ ./node_modules/.bin/catalog...
`bin` part of `package.json` is set up properly (see my last comment) not sure how npm link can help, as I just did `npm i catalog` and after it i...
As it's installed locally as dependency of another project. so it's in package.json#dependencies and i do `npm i` and catalog is installed in `./node_modules/catalog` and as it has `bin` in...
sure, https://github.com/f-o-a-m/foam.css/blob/master/package.json#L6 here you can see I have this script ` "start": "catalog start",` If I do `npm run start` it works fine, but if i do `./node_modules/.bin/catalog` start it...
Just an idea: ``` js // TaskAp Is Applicative but not Monad so `ap` can be parallel // Task is Monad so `ap` can't be parallel import {Task, TaskAp} from...
So a Task could be used as Task and as TaskAp at the same time without conversion? that looks unfamiliar
👍 I have taken look at **static-land** and now it makes sense!
> ``` js > const main = lift2( > (a) => (b) => [a,b], > get('/a').toTaskAp(), > get('/b').toTaskAp() > ).toTask().chain( > ([a,b]) => ..... > ) > ``` ^ this,...
Just created: - https://bugzilla.mozilla.org/show_bug.cgi?id=1267060 - https://bugs.chromium.org/p/chromium/issues/detail?id=606193 - https://bugs.webkit.org/show_bug.cgi?id=156958