J'ai lancé ces commandes pour créer le répertoire :
mkdir webpack-demo
cd webpack-demo
npm init -y
npm install webpack --save-dev
npm install webpack-cli --save-dev
puis tapez cd webpack-demo
alors si je tape ls
Je reçois "node_modules" "package-lock.json" "package.json"
mais ensuite, lorsque j'essaie de suivre les instructions suivantes de l'application page d'instructions pour la configuration de base de webpack :
webpack-demo
|- package.json
+ |- index.html
+ |- /src
+ |- index.js
J'obtiens la sortie suivante du 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'est-ce que je fais de mal ?