Skip to content

Commit de6ffde

Browse files
authored
Run build during install and remove locales (#28)
* Run build during install * Cleanup
1 parent 67e0489 commit de6ffde

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

README.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,19 @@
1010

1111
## Development
1212

13-
Format all the supported files:
13+
First time:
14+
15+
```
16+
yarn
17+
```
18+
19+
Build:
20+
21+
```
22+
yarn build
23+
```
24+
25+
Format files:
1426

1527
```
1628
yarn fix

ext/_locales/en/messages.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

ext/manifest.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"48": "icons/icon48.png",
1010
"128": "icons/icon128.png"
1111
},
12-
"default_locale": "en",
1312
"background": {
1413
"page": "src/background/background.html",
1514
"persistent": true

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"fix:other": "yarn prettier --write",
2424
"fix:js": "yarn test:js --fix",
2525
"fix": "yarn fix:js && yarn fix:other",
26+
"install": "yarn build",
2627
"prettier": "prettier \"**/*.{md,css,html,json,yml}\" --write",
2728
"test:other": "yarn prettier --list-different",
2829
"test:js": "eslint --ignore-path .gitignore --ignore-path .prettierignore \"**/*.js\"",

0 commit comments

Comments
 (0)