Skip to content

Commit

Permalink
feat(package.json): alphabetize scripts, rename watch to dev
Browse files Browse the repository at this point in the history
  • Loading branch information
cmnord committed Feb 28, 2023
1 parent a7409b2 commit 844bded
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -11,7 +11,7 @@ npm install
Then run the Webpack server:

```sh
npm run watch
npm run dev
```

Finally, run the `web-ext` development version of the extension with:
Expand Down
12 changes: 6 additions & 6 deletions package.json
@@ -1,16 +1,16 @@
{
"private": true,
"scripts": {
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"lint": "run-p lint:*",
"lint-fix": "run-p 'lint:* -- --fix'",
"test": "run-s lint:* build",
"build": "webpack --mode=production",
"watch": "webpack --mode=development --watch",
"start:firefox": "web-ext run --source-dir distribution",
"version": "dot-json distribution/manifest.json version $VER",
"release:cws": "webstore upload --source=distribution --auto-publish",
"release:amo": "web-ext-submit --source-dir distribution",
"release": "VER=$(daily-version) run-s build version release:*"
"release": "VER=$(daily-version) run-s build version release:*",
"start:firefox": "web-ext run --source-dir distribution",
"test": "run-s lint:* build",
"version": "dot-json distribution/manifest.json version $VER"
},
"devDependencies": {
"@types/firefox-webext-browser": "^109.0.0",
Expand Down

0 comments on commit 844bded

Please sign in to comment.