Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 473 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 473 Bytes

Parcel Test

Setup

  • mkdir my-new-project
  • cd my-new-project
  • git init
  • echo node_modules/ >> .gitignore
  • echo dist/ >> .gitignore
  • echo .cache/ >> .gitignore
  • npm init -y
  • Add "start": "parcel index.html" to "scripts" in package.json
  • npm i --save-dev parcel
  • npm i --save-dev node-sass
  • touch index.html
  • git add .
  • git commit -m "Initial commit"

Running