我遵循Webpack指南,在运行npm run build
时陷入here的状态,我收到了以下错误消息:
path.js:1086
cwd = process.cwd();
^
Error: ENOENT: no such file or directory, uv_cwd
at Object.resolve (path.js:1086:25)
at Function.Module._resolveLookupPaths (internal/modules/cjs/loader.js:479:17)
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:587:20)
我检查了所有进口,一切都很好。比我以为应该缓存问题,所以我出乎意料地跑了npm cache clean -f
我得到了完全相同的错误。可能是 NodeJS 问题,但我不知道如何调试它。
这是我的文件结构:
package.json
{
"name": "test_webpack",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^1.0.1",
"csv-loader": "^3.0.2",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"xml-loader": "^1.2.1"
},
"dependencies": {
"lodash": "^4.17.11"
}
}
webpack.config.js
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin')
const CleanWebpackPlugin = require('clean-webpack-plugin')
module.exports = {
mode: 'development',
entry: {
app: './src/index.js',
print: './src/print.js',
sec: './src/secondClick.js'
},
devtool: 'inline-source-map',
plugins: [
new CleanWebpackPlugin(['dist']),
new HtmlWebpackPlugin({
titile: "Output manager from webpack n12"
})
],
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
}
};
答案 0 :(得分:2)
关闭所有终端窗口并再次打开对我来说都是有效的。
答案 1 :(得分:1)
尝试更改您的webpack.config
:
entry: {
app: path.resolve(__dirname, 'src/index.js'),
print: path.resolve(__dirname, 'src/print.js'),
sec: path.resolve(__dirname, 'src/secondClick.js')
},
并确保使用以下命令从项目根目录运行命令:
npx webpack --config webpack.config.js
答案 2 :(得分:1)
重启PC也可能有帮助。
答案 3 :(得分:0)
看来你的shell疯了:),
只需cd.. && cd [the folder you tried running the command]
,一切都会恢复正常。