我正在学习ReactJS。在我正在做的项目中,webpack(在我的“ package.json”文件中)用一堆文件污染了我项目的根。
我期望这样的事情:
from pyper import *
import pandas as pd
r=R(use_pandas=True)
r('''
library(tmvtnorm)
sigma <- matrix(c(4,2,2,3), ncol=2)
x <- rtmvnorm(n=500, mean=c(1,2), sigma=sigma, upper=c(1,0))
''')
out = pd.DataFrame(r.get('x'))
pr int(out.head(5))
# 0 1
# 0 -0.832567 -1.976393
# 1 0.466617 -0.266892
# 2 0.802809 -0.403514
# 3 -2.295357 -1.896990
# 4 -0.128641 -0.392827
但是我的根目录中有40多个文件,
/node_modules
/public
/src
package.json
webpack.config.js
我绝对是新手,很困惑为什么这些文件显示在这里?
感谢您的帮助!
-Gav
更新: 这是我的webpack.config.js
/node_modules
/public
/src
acorn
acorn.cmd
atob
atob.cmd
babel
babel.cmd
.....[about 40 or so more]
这是我的package.json
const path = require('path');
module.exports = {
entry: './src/app.js',
output: {
path: path.join(__dirname, 'public'),
filename: 'bundle.js'
}
};