aboutsummaryrefslogtreecommitdiffhomepage
path: root/DEVELOPING.md
diff options
context:
space:
mode:
Diffstat (limited to 'DEVELOPING.md')
-rw-r--r--DEVELOPING.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/DEVELOPING.md b/DEVELOPING.md
index 687e389..65052c5 100644
--- a/DEVELOPING.md
+++ b/DEVELOPING.md
@@ -8,13 +8,13 @@ The minimum requirements are:
8- Git 8- Git
9- Node.js (version 16 and above) 9- Node.js (version 16 and above)
10 10
11To install the project dependencies run 11To install the project dependencies, run
12 12
13```sh 13```sh
14# install dependencies 14# install dependencies
15npm install 15npm install
16 16
17# install rollup or use npx 17# install linting and building tools
18npm install -g rollup standard 18npm install -g rollup standard
19``` 19```
20 20
@@ -32,7 +32,7 @@ npm run lint
32 32
33```sh 33```sh
34# without code minified 34# without code minified
35npm build 35npm run build
36 36
37# with code minified 37# with code minified
38PRODUCTION=true npm build 38PRODUCTION=true npm build
@@ -40,12 +40,12 @@ PRODUCTION=true npm build
40 40
41## Firefox Addon 41## Firefox Addon
42 42
431. To build addon(after `dist/` is generated from `npm build`), run 431. To build addon(after `dist/` is generated from `npm run build`), run
44 44
45```sh 45```sh
46npm run addon 46npm run addon
47``` 47```
48 48
492. Then go to `about:debugging` page in Firfox Browser, then press `This Firefox` for extension page 491. Then Firefox Browser, go to `about:debugging` page. Press `This Firefox` for extension page
50 50
513. Press `Load Temporary Add-on...`, then select `manifest.json` in `addon/` 511. Press `Load Temporary Add-on...`, then select `manifest.json` in `addon/`