mirror of
https://github.com/actions/setup-python.git
synced 2024-11-09 09:13:33 -05:00
Consistent file name references
This commit is contained in:
parent
d0da811f3d
commit
c57e58b1ee
1 changed files with 5 additions and 5 deletions
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
### Checkin
|
### Checkin
|
||||||
|
|
||||||
- Do check in source (src)
|
- Do check in source (`src/`)
|
||||||
- Do check in a single index.js file after running `ncc`
|
- Do check in a single `index.js` file after running `ncc`
|
||||||
- Do not check in node_modules
|
- Do not check in `node_modules/`
|
||||||
|
|
||||||
### NCC
|
### NCC
|
||||||
|
|
||||||
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/`.
|
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/`.
|
||||||
|
|
||||||
### Developing
|
### Developing
|
||||||
|
|
||||||
|
@ -18,7 +18,7 @@ npm install
|
||||||
tsc
|
tsc
|
||||||
ncc build
|
ncc build
|
||||||
```
|
```
|
||||||
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`.
|
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`.
|
||||||
|
|
||||||
During the commit step, Husky will take care of formatting all files with [Prettier](https://github.com/prettier/prettier)
|
During the commit step, Husky will take care of formatting all files with [Prettier](https://github.com/prettier/prettier)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue