You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-12Lines changed: 8 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,18 +13,14 @@ Authenticator is one of the [featured extensions on Firefox Add-ons this month](
13
13
## Build Setup
14
14
15
15
```bash
16
-
# install typescript
17
-
npm install -g typescript
18
-
#install gts
19
-
npm install -g gts
20
-
# install dependencies
16
+
# install typescript and gts
17
+
npm install -g typescript gts
18
+
# install development dependencies
21
19
npm install
22
-
# check typescript style
23
-
gts check
24
-
# try to auto fix style issue
20
+
# fix code style issues
25
21
gts fix
26
-
# compile for Chrome
27
-
npm run chrome
28
-
# compile for Firefox
29
-
npm run firefox
22
+
# compile
23
+
npm run [chrome, firefox, edge]
30
24
```
25
+
26
+
Note that Windows users should download [Cygwin](http://cygwin.com/) to build. Building for Edge requires the [Windows App Certification Kit](https://developer.microsoft.com/en-us/windows/develop/app-certification-kit)
0 commit comments