This commit is contained in:
cupcakearmy 2021-11-22 01:36:07 +01:00
parent aed5080e46
commit 2d8b259f32
No known key found for this signature in database
GPG Key ID: 3235314B4D31232F
2 changed files with 10 additions and 1 deletions

3
.gitignore vendored
View File

@ -3,6 +3,7 @@ yarn-error.log
# Build
.cache
.parcel-cache
dist
*.zip
*.pem
@ -11,4 +12,4 @@ web-ext-artifacts
# Design
*.afphoto
*.afdesign
*.afdesign

8
.parcelrc Normal file
View File

@ -0,0 +1,8 @@
{
"extends": "@parcel/config-webextension",
"transformers": {
"*.svelte": [
"parcel-transformer-svelte"
]
}
}