Skip to content

Instantly share code, notes, and snippets.

@kzelda
Last active May 7, 2020 09:09
Show Gist options
  • Save kzelda/fffe5dd56e1d0804fda2c505f2411d1b to your computer and use it in GitHub Desktop.
Save kzelda/fffe5dd56e1d0804fda2c505f2411d1b to your computer and use it in GitHub Desktop.
Quick start with pure-css & parceljs
mkdir app
cd app
wget -r https://purecss.io/layouts/side-menu/

yarn init --yes
yarn add --dev parcel@next serve
// package.json
{
  "name": "pure-css-app1",
  "version": "1.0.0",
  "license": "MIT",
  "scripts": {
    "parcel": "parcel ./src/layouts/email/index.html",
    "parcel-build": "parcel build ./src/layouts/email/index.html",
    "serve": "serve dist"
  },
  "devDependencies": {
    "parcel": "^2.0.0-alpha.3.2"
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment