如何扩展create-react-app?

时间:2016-12-22 07:17:09

标签: reactjs create-react-app

有没有办法用我自己的库,webpack配置,dotfiles等扩展精彩的create-react-app,但保持最新?

我的意思是,我希望eject它,然后根据我的需要对其进行润色,但是获得最新的更新,没有太大的痛苦,即手动跟踪回购,寻找差异,复制和粘贴等等。

1 个答案:

答案 0 :(得分:5)

是的,实际上你可以!您所做的是分叉,修改和发布react-scripts并在使用create-react-app搭建脚手架时参考:

$ create-react-app my-app --scripts-version react-scripts-fork

Here you can read more about react-scripts.

Here is an article about how to fork and modify react-scripts to your own needs.

可能custom-react-scripts已经实现了您正在寻找的东西,即SASS或装饰器。 Here is an article about custom-react-scriptshere is the package