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: CONTRIBUTING.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -143,22 +143,22 @@ This project uses a combination of `gts` and `eslint`. Just like tests and compi
143
143
144
144
```sh
145
145
# Lint all modules
146
-
npm lint
146
+
npm run lint
147
147
148
148
# Lint a single module
149
149
cd packages/opentelemetry-module-name
150
-
npm lint
150
+
npm run lint
151
151
```
152
152
153
153
There is also a script which will automatically fix many linting errors.
154
154
155
155
```sh
156
156
# Lint all modules, fixing errors
157
-
npm lint:fix
157
+
npm run lint:fix
158
158
159
159
# Lint a single module, fixing errors
160
160
cd packages/opentelemetry-module-name
161
-
npm lint:fix
161
+
npm run lint:fix
162
162
```
163
163
164
164
### Adding a package
@@ -202,6 +202,7 @@ If all of the above requirements are met and there are no unresolved discussions
202
202
203
203
### Generating CHANGELOG documentation
204
204
205
+
- Generate and export your [Github access token](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token): `export GITHUB_AUTH=<your_token>`
205
206
-`npm run changelog` to generate CHANGELOG documentation in your terminal (see [RELEASING.md](RELEASING.md) for more details).
0 commit comments