我想在我的React应用程序中使用typed-less-modules,并且效果很好,但是我需要使用CRLF行尾,所以我forked the repository自己添加了它。但是它不起作用!
我一开始所做的事情
yarn add --dev typed-less-modules
yarn tlm # works file, but can generate only LF line endings
创建分叉的仓库后:
yarn remove typed-less-modules
yarn add --dev https://github.com/KarelHrkal/typed-less-modules # sucessfully installs it
yarn tlm # error Command "tlm" not found.
为什么找不到命令?当我在分支的存储库中使用yarn tlm
时,无论在更改前后,它都可以正常工作。
关于命令的设置(see the commit yourself),我没有做任何更改,但是我不得不重新生成yarn.lock
,因为它无法下载某些库,但是我怀疑那是原因。
我是否缺少有关如何设置命令的一些隐藏的魔法?我尝试在普通的scripts
之后查看package.json
中的yarn add --dev typed-less-modules
,但是没有更改(没有tlm
命令)。