Me encontré estos comandos para hacer el directorio:
mkdir webpack-demo
cd webpack-demo
npm init -y
npm install webpack --save-dev
npm install webpack-cli --save-dev
y, a continuación, escriba cd webpack-demo
, entonces si escribo ls
me sale "node_modules" "paquete de bloqueo.json" "paquete.json"
pero luego cuando intento seguir las siguientes instrucciones desde el webpack conjunto básico de instrucciones página:
webpack-demo
|- package.json
+ |- index.html
+ |- /src
+ |- index.js
Tengo la siguiente salida desde la terminal:
|- package.json
-bash: syntax error near unexpected token `|'
+ |- index.html
-bash: +: command not found
-bash: -: command not found
+ |- /src
-bash: +: command not found
-bash: +: command not found
+ |- index.js
-bash: +: command not found
-bash: -: command not found
¿Qué estoy haciendo mal?