diff options
Diffstat (limited to 'DEVELOPING.md')
-rw-r--r-- | DEVELOPING.md | 12 |
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 | ||
11 | To install the project dependencies run | 11 | To install the project dependencies, run |
12 | 12 | ||
13 | ```sh | 13 | ```sh |
14 | # install dependencies | 14 | # install dependencies |
15 | npm install | 15 | npm install |
16 | 16 | ||
17 | # install rollup or use npx | 17 | # install linting and building tools |
18 | npm install -g rollup standard | 18 | npm 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 |
35 | npm build | 35 | npm run build |
36 | 36 | ||
37 | # with code minified | 37 | # with code minified |
38 | PRODUCTION=true npm build | 38 | PRODUCTION=true npm build |
@@ -40,12 +40,12 @@ PRODUCTION=true npm build | |||
40 | 40 | ||
41 | ## Firefox Addon | 41 | ## Firefox Addon |
42 | 42 | ||
43 | 1. To build addon(after `dist/` is generated from `npm build`), run | 43 | 1. To build addon(after `dist/` is generated from `npm run build`), run |
44 | 44 | ||
45 | ```sh | 45 | ```sh |
46 | npm run addon | 46 | npm run addon |
47 | ``` | 47 | ``` |
48 | 48 | ||
49 | 2. Then go to `about:debugging` page in Firfox Browser, then press `This Firefox` for extension page | 49 | 1. Then Firefox Browser, go to `about:debugging` page. Press `This Firefox` for extension page |
50 | 50 | ||
51 | 3. Press `Load Temporary Add-on...`, then select `manifest.json` in `addon/` | 51 | 1. Press `Load Temporary Add-on...`, then select `manifest.json` in `addon/` |