Angular 7.2-ng新项目命令在我的根目录中创建一堆node_modules

时间:2019-01-29 21:25:26

标签: angular-cli

最近我运行了lease <-c(1, 2, 3, 1, 2, 3, 1, 2, 3) year<-c(2017, 2017, 2017, 2018, 2018, 2018, 2018, 2018, 2018) variable<-c(NA, 1, 1, NA, 1, 1, NA, 1, 1) location<- c('in', 'in', 'in', 'in', 'in', 'in', 'out', 'out', 'out') dft<-data.frame(lease, year, variable, location) dft%>% mutate_all(as.character)%>% filter(!is.na(variable))%>% ggplot(aes(x=lease, fill = variable)) + geom_bar(stat = 'Count', position = 'stack') + facet_grid(location~year) + guides(fill=guide_legend(title="Level"))+ scale_x_discrete(drop = FALSE) 命令来创建一个新的ng new MyApp项目。但是,创建应用程序后,在项目的根目录中安装了一堆文件,我猜(不确定)应该已经在Angular 7.2文件夹中安装/添加了文件。

一个月前,我还运行了node_modules命令(ng new app),并且运行良好。我已经重新安装了Node.js(至10.15.1版)。

任何线索出了什么问题?

以下一些其他信息。

安装在新项目根目录中的文件: enter image description here

运行ng new命令后的警告:  enter image description here

enter image description here

Angular cli版本: enter image description here

0 个答案:

没有答案