Skip to content
This repository has been archived by the owner on Feb 7, 2023. It is now read-only.

lukethacoder/australia-post

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Parcel

australia-post

a super minimal Parcel starter for quick JS prototyping feat. TailwindCSS for quick styling.

Getting Started

Install them packages

yarn

Run the project

yarn dev

Any extra files to be watched should be appended to the package.json script.

From there you just need to point Parcel at some of your entry files. Like if you're building a website, an index.html file:

...
  "scripts": {
    ...
    "dev": "parcel index.html index.js MORE.html FILES.js GO.json HERE.css",
    ...
  },
...

Not intended for production use