Skip to content

Commit

Permalink
Merge branch 'main' into ep/ct-296-convert-tojs
Browse files Browse the repository at this point in the history
  • Loading branch information
ericapisani committed Nov 21, 2023
2 parents dc057dd + e5c33a0 commit 885413d
Show file tree
Hide file tree
Showing 10 changed files with 450 additions and 1,042 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ jobs:
run:
npm ls -a -p | wc -l | tr -d ' \n' > .delta.dependencyCount && echo " (Dependency count)" >>
.delta.dependencyCount
- name: Get TypeScript conversion progress
run:
grep -r --exclude-dir="node_modules" --include="*.mts" "@ts-expect-error" . | wc -l | xargs >
.delta.tsConversion && echo " (Number of ts-expect-error directives)" >> .delta.tsConversion
- name: Save PR number
if: github.event_name == 'pull_request'
run: echo ${{ github.event.number }} > ./pr_number
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,22 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).



## [17.6.0](https://github.com/netlify/cli/compare/v17.5.3...v17.6.0) (2023-11-20)


### Features

* support specification of log levels to stream ([#6200](https://github.com/netlify/cli/issues/6200)) ([18500f6](https://github.com/netlify/cli/commit/18500f660b07992d4059ad488c2511c00b626f06))

## [17.5.3](https://github.com/netlify/cli/compare/v17.5.2...v17.5.3) (2023-11-20)


### Bug Fixes

* **deps:** update dependency @netlify/build to v29.27.0 ([#6199](https://github.com/netlify/cli/issues/6199)) ([6a1cc63](https://github.com/netlify/cli/commit/6a1cc63d691ef2d6cd90e7f7c9ed03e7da15336a))
* **deps:** update dependency @netlify/zip-it-and-ship-it to v9.26.2 ([#6197](https://github.com/netlify/cli/issues/6197)) ([7275667](https://github.com/netlify/cli/commit/7275667ca650909d641e6ef19ec4c07c3a49f289))
* Image cdn cli improvements ([#6189](https://github.com/netlify/cli/issues/6189)) ([327ff95](https://github.com/netlify/cli/commit/327ff95152e587d97919dffb6e65b18fab947589))

## [17.5.2](https://github.com/netlify/cli/compare/v17.5.1...v17.5.2) (2023-11-20)


Expand Down
4 changes: 3 additions & 1 deletion docs/commands/logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,15 @@ netlify logs:function
**Flags**

- `filter` (*string*) - For monorepos, specify the name of the application to run the command in
- `level` (*string*) - Log levels to stream. Choices are: trace, debug, info, warn, error, fatal
- `debug` (*boolean*) - Print debugging information

**Examples**

```bash
netlify logs:function my-function
netlify logs:function
netlify logs:function my-function
netlify logs:function my-function -l info warn
```

---
Expand Down
Loading

0 comments on commit 885413d

Please sign in to comment.