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
{{ message }}
This repository was archived by the owner on Jan 20, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: docs/contributors.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,13 +2,13 @@
2
2
3
3
### Checkin
4
4
5
-
- Do check in source (src)
6
-
- Do check in a single index.js file after running `ncc`
7
-
- Do not check in node_modules
5
+
- Do check in source (`src/`)
6
+
- Do check in a single `index.js` file after running `ncc`
7
+
- Do not check in `node_modules/`
8
8
9
9
### NCC
10
10
11
-
In order to avoid uploading `node_modules` to the repository, we use [zeit/ncc](https://github.com/zeit/ncc) to create a single `index.js` file that gets saved in `dist/`.
11
+
In order to avoid uploading `node_modules/` to the repository, we use [zeit/ncc](https://github.com/zeit/ncc) to create a single `index.js` file that gets saved in `dist/`.
12
12
13
13
### Developing
14
14
@@ -18,7 +18,7 @@ npm install
18
18
tsc
19
19
ncc build
20
20
```
21
-
Any files generated using `tsc` will be added to `lib/*`, however those files also are not uploaded to the repository and are exluded using `.gitignore`.
21
+
Any files generated using `tsc` will be added to `lib/`, however those files also are not uploaded to the repository and are exluded using `.gitignore`.
22
22
23
23
During the commit step, Husky will take care of formatting all files with [Prettier](https://github.com/prettier/prettier)
0 commit comments