Add empty .firefox-profile

The nested version didn't work on a clean repository, because the .cache
folder did not exist.
This commit is contained in:
nachtjasmin 2023-05-31 19:52:33 +02:00
parent 0b9c6bee8a
commit c714475a6a
No known key found for this signature in database
3 changed files with 2 additions and 1 deletions

View file

1
.gitignore vendored
View file

@ -150,3 +150,4 @@ web-ext-artifacts
TODO
edgecases
notes
.firefox-profile

View file

@ -5,7 +5,7 @@
"build:webext": "web-ext build --overwrite-dest",
"start": "run-p -l -r watch:**",
"watch:scripts": "node scripts/watch.mjs",
"watch:webext": "web-ext run --keep-profile-changes --profile-create-if-missing --firefox-profile=.cache/profile/",
"watch:webext": "web-ext run --keep-profile-changes --profile-create-if-missing --firefox-profile=.firefox-profile/",
"format": "prettier --write --ignore-path .gitignore .",
"package": "run-s -l build:**"
},