博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
react项目 npm run eject报错
阅读量:5158 次
发布时间:2019-06-13

本文共 718 字,大约阅读时间需要 2 分钟。

react项目,执行npm run eject生成配置文件报错:

Remove untracked files, stash or commit any changes, and try again.npm ERR! code ELIFECYCLEnpm ERR! errno 1npm ERR! xindai-3@0.1.0 eject: `react-scripts eject`npm ERR! Exit status 1npm ERR! npm ERR! Failed at the xindai-3@0.1.0 eject script.npm ERR! This is probably not a problem with npm. There is likely additional logging output above.npm ERR! A complete log of this run can be found in:npm ERR!     /Users/fengyang/.npm/_logs/2018-12-26T08_28_06_453Z-debug.log

报错原因:

脚手架添加.gitgnore文件,但是却没有本地仓库。

解决办法:

cd  projectgit init  // 当前目录新建代码库git add .  // 添加当前目录所有文件到暂存区git commit -m 'Saving before ejecting'  // 提交暂存区到仓库区npm run eject

 

转载于:https://www.cnblogs.com/feng3037/p/10179959.html

你可能感兴趣的文章
原型设计工具
查看>>
windows下的C++ socket服务器(4)
查看>>
css3 2d转换3d转换以及动画的知识点汇总
查看>>
【Java】使用Eclipse进行远程调试,Linux下开启远程调试
查看>>
对Vue为什么不支持IE8的解释之一
查看>>
计算机改名导致数据库链接的诡异问题
查看>>
Java8内存模型—永久代(PermGen)和元空间(Metaspace)(转)
查看>>
ObjectiveC基础教程(第2版)
查看>>
centos 引导盘
查看>>
Notes of Daily Scrum Meeting(12.8)
查看>>
Apriori算法
查看>>
onlevelwasloaded的调用时机
查看>>
求出斐波那契数组
查看>>
lr_start_transaction/lr_end_transaction事物组合
查看>>
CodeIgniter学习笔记(四)——CI超级对象中的load装载器
查看>>
.NET CLR基本术语
查看>>
ubuntu的home目录下,Desktop等目录消失不见
查看>>
建立,查询二叉树 hdu 5444
查看>>
[Spring框架]Spring 事务管理基础入门总结.
查看>>
2017.3.24上午
查看>>