Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create a playground #23

Draft
wants to merge 11 commits into
base: main
Choose a base branch
from
617 changes: 346 additions & 271 deletions package-lock.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"scripts": {
"build": "del-cli dist && tsc --project tsconfig.dist.json",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"lint": "eslint --ext .js,.mjs,.ts --ignore-path .gitignore --max-warnings 0 .",
"test": "jest",
"prepare": "npm run build"
},
Expand All @@ -28,6 +28,7 @@
"unist-builder": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/chance": "^1.1.3",
Expand Down
8 changes: 8 additions & 0 deletions playground/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Dependency directories
node_modules/

# Build output
dist/

# Parcel cache
.parcel-cache/
6 changes: 6 additions & 0 deletions playground/.postcssrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
Loading