Alec Larson
Alec Larson
This code.. ```moon foo ?= {} -- If the ?. operator is added: foo?.bar ?= {blue: true} ``` ..would compile to: ```lua local foo if foo == nil then foo...
See here: https://github.com/tarantool/tarantool/issues/3143 Tarantool uses [this version](https://github.com/tarantool/luajit/tree/b8587fafa36b417194b208d747e1f2be1faf19be) of LuaJIT. Let me know if you can help. :)
I've been looking into adding Typescript support to this library. Here are the issues I encountered. 1. JSX factory invocations (eg: ``) return `ReactElement` (but [a fix](https://github.com/Microsoft/TypeScript/issues/21699#issuecomment-423277416) is on the...
When the scm root has `./node_modules/prettier-tslint` and/or `./node_modules/prettier-eslint`, we use them on any applicable modules. We prefer `prettier-eslint` for `.js`, `.jsx`, and `.mjs` modules. If `prettier-eslint` does not exist, we...
The relevant commit: 487a04f3a5295a8e4ffddf63298940314f0c38e0 (Probably wanta merge #68 first)
Improve the `remove` command by cleaning up after ourselves in the `node_modules/.bin` directory. The only relevant commit: 507ad815f4b7c0d7b0b2163743cc8552b5d2cdc4 Improves upon #61 (Probably wanta merge #62 before this)
During `yalc publish`, the local `.yalc` directory is now copied to the global store, but its files are excluded from the content hash. Finally, the local `yalc.lock` file is copied...
This changes the default behavior of `yalc add` to link to `.yalc/{name}` from `node_modules` __instead__ of copying the contents of `.yalc/{name}`. You can use `--no-link` to get the old behavior....
(Probably wanta merge #69 first) Also removed some unused dependencies.
While using #66, I got an error when running `yalc add` or `yalc link` with a package that had already been installed with Yalc. This commit fixes that issue. The...