James Coleman
James Coleman
Looks like it's somewhere further up the chain (just a method from the mixin). There's a few things I need to do with this library including re-writing it so it's...
That's what `constraints` are used for. For example: ```javascript "constraints": { "oatmeal": {"max": 4}, }, "variables": { "oatmeal": {"oatmeal": 1 }, }, ``` Would ensure that the maximum value for...
Do you have the [.babelrc](https://github.com/pheuter/essential-react/blob/master/.babelrc) file in the root of your directory?
It looks like you could provide a [validate](https://github.com/react-component/mentions/blob/331757d9b5cdaccabd76ecdeed0f6954bc019d7a/src/util.ts#L134-L137) function or use the `split` prop to change the behaviour. `split` is a [space](https://github.com/react-component/mentions/blob/331757d9b5cdaccabd76ecdeed0f6954bc019d7a/src/Mentions.tsx#L63) by default, I changed it to an empty...
I had a `package-lock.json` file in _a_ parent directory but it wasn't the direct parent; so make sure you look all the way up the tree. Thanks @wesbos!