From 962490aa2a302450aea655f1b71e188e73ebfd9d Mon Sep 17 00:00:00 2001 From: SethBurkart123 Date: Sun, 11 Feb 2024 07:13:44 +1100 Subject: [PATCH] rename firefox dev and build scripts --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 574345de..dc96ed0a 100644 --- a/package.json +++ b/package.json @@ -7,8 +7,8 @@ "scripts": { "dev": "parcel watch manifest.json --host localhost --config @parcel/config-webextension --no-hmr --no-content-hash", "build": "parcel build manifest.json --config @parcel/config-webextension --no-content-hash --no-cache", - "dev-firefox": "parcel watch firefox/manifest.json --host localhost --config @parcel/config-webextension --no-hmr --no-content-hash", - "build-firefox": "parcel build firefox/manifest.json --config @parcel/config-webextension --no-content-hash --no-cache", + "dev:firefox": "parcel watch firefox/manifest.json --host localhost --config @parcel/config-webextension --no-hmr --no-content-hash", + "build:firefox": "parcel build firefox/manifest.json --config @parcel/config-webextension --no-content-hash --no-cache", "eslint": "eslint --fix .", "package": "7z a -tzip extension.zip ./dist/*" },