version 0.3.0
when I run
npx webpack-cli init
it returns "init isn't a valid name. It should be prefixed with 'webpack-scaffold', but have different suffix.
@r00nscapenab
If you want to use webpack-cli v3, please downgrade @webpack-cli/init to version 0.2.2.
If you want to use webpack-cli v4(beta) (which would be nice), use following commands after installing webpack-cli@beta
npx webpack-cli create
@rishabh3112
When I run: npx webpack-cli create --auto
I get:
ERROR in Entry module not found: Error: Can't resolve 'create' in 'D:\SystemFolders....'
My entry module is src/index.js?!
"devDependencies": {
"@webpack-cli/init": "^0.3.0",
"babel-loader": "^8.0.6",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
@rishabh3112
When I run:
npx webpack-cli create --autoI get:
ERROR in Entry module not found: Error: Can't resolve 'create' in 'D:\SystemFolders....'
My entry module is
src/index.js?!"devDependencies": { "@webpack-cli/init": "^0.3.0", "babel-loader": "^8.0.6", "webpack": "^4.41.5", "webpack-cli": "^3.3.10" },
I hade to run npm install webpack-cli@beta
Close in favor https://github.com/webpack/webpack-cli/issues/1127
Most helpful comment
@rishabh3112
When I run:
npx webpack-cli create --autoI get:
My entry module is
src/index.js?!