Nicolas Chambrier

Results 16 issues of Nicolas Chambrier

localtunnel has not been very reliable during tests, so it may be a good idea to just remove it. However, it brings some issues: * Client-side must be modified when...

help wanted
question
good first issue

That's most probably when you forgot to add a gitignore file or just forgot to ignore you `dist.js` file. Copycast should warn user, and even maybe interactively ask if he...

enhancement
help wanted
good first issue

We have several issues around excluded files today: * If one wants to cast assets, it's currently impossible. Maybe we should remove our defaults and only rely on .gitignore? *...

help wanted
question

If you add/remove/modify .gitignore it won't have any impact on the file list until you restart. We should watch for this, and when such change is detected: * We could...

help wanted
good first issue

It's pretty much all in the title, how about this: ```js alerty.alert(…).then(onOk) alerty.confirm(…).then(ok => ok ? onOk() : onCancel()) // or alerty.confirm(…).then(onOk, onCancel) alerty.prompt(…).then(onOk, onCancel) alerty.toast(…).then(callback) ``` for backward compatibility...