我确实在全球范围内安装了防暴和防暴cli。我已经从命令行测试了两个。事实上,我有另一个项目,暴乱正在观看和正常编译。
这是一个webpack设置,这是错误:
ERROR in ./src/index.js
Module not found: Error: Can't resolve 'riot' in
'c:\Users\...\www\riot\src'
@ ./src/index.js 3:11-26
@ multi (webpack)-dev-server/client?http... ./src/index.js
ERROR in ./src/index.js
Module not found: Error: Can't resolve '.tags/sample-output.tag' in 'c:\Users\...\www\riot\src'
@ ./src/index.js 4:0-34
@ multi (webpack)-dev-server/client?http... ./src/index.js
webpack: Failed to compile.
这是索引文件:
var riot = require('riot')
require('.tags/sample-output.tag')
document.addEventlistner('DOMContentLoaded', function(){
riot.mount('sample-output')
})
这是webpack.config
var path = require('path')
module.exports = {
entry: './src/index.js',
output:{
path:__dirname,
filename:'bundle.js'
},
module:{
loaders:[
{
test: /\.js$/,
loader: 'babel-loader',
exclude: /node_modules/,
query:{
presets:['es2015']
}
},
{
test: /\.tag$/,
loader: 'tag',
exclude: /node_modules/
}
]
}
}
答案 0 :(得分:0)
基本上我称我的项目文件夹为'riot',然后当我使用 npm init -y
标志运行-y
时(因为我很懒)。
当然,它将我的项目命名为“ riot ”!这就是问题的根源。
有关详细信息,请参阅:http://thisdavej.com/node-newbie-error-npm-refusing-to-install-package-as-a-dependency-of-itself/