Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and paperclover committed Oct 21, 2022
1 parent d0f6986 commit a56d620
Show file tree
Hide file tree
Showing 16 changed files with 47 additions and 55 deletions.
5 changes: 0 additions & 5 deletions .changeset/bright-teachers-tap.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chilly-snakes-speak.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cyan-candles-teach.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-elephants-smell.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/silent-meals-hammer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-fans-vanish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-owls-vanish.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/twenty-chefs-shop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wild-roses-run.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/yellow-ants-jog.md

This file was deleted.

23 changes: 23 additions & 0 deletions packages/paperdave-logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# @paperdave/logger

## 2.3.0

### Minor Changes

- re-export `chalk` and `ansiEscapes` for ease of use ([`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61))

* upgraded to chalk 5 ([`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61))

- allow passing a single string instead of an object to `Progress`, `Spinner`, `withSpinner`, `withProgress`, which is shorthand for `{ text: ... }`. ([`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61))

* **deprecation warning**: swapped the order of the arguments for `withSpinner` and `withProgress`. in v3 this will be enforced ([`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61))

### Patch Changes

- build for commonjs so `require('@paperdave/logger')` works ([`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61))

* bugfix: clear widgets on error before exit. ([`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61))

- `LogWidget.batchRedraw` supports nesting now ([`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61))

- Updated dependencies [[`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61)]:
- @paperdave/utils@1.5.0

## 2.2.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/paperdave-logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@paperdave/logger",
"version": "2.2.4",
"version": "2.3.0",
"description": "Versitle logging with spinners and progress bars.",
"keywords": [
"logger",
Expand All @@ -26,7 +26,7 @@
"build": "tsc && esbuild --outfile=./dist/index.js --target=esnext --format=esm --platform=node --sourcemap --bundle src/index.ts --external:wrap-ansi --external:chalk --external:@paperdave/utils --external:ansi-escapes && esbuild --outfile=./dist/index.cjs --target=esnext --format=cjs --platform=node --sourcemap --bundle src/index.ts --external:wrap-ansi --external:@paperdave/utils"
},
"dependencies": {
"@paperdave/utils": "workspace:^1.4.1",
"@paperdave/utils": "workspace:^1.5.0",
"ansi-escapes": "^6.0.0",
"chalk": "^5.1.2",
"strip-ansi": "^7.0.1"
Expand Down
6 changes: 6 additions & 0 deletions packages/paperdave-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @paperdave/utils

## 1.5.0

### Minor Changes

- Add `isRootDirectory` utility function. ([`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61))

## 1.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/paperdave-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@paperdave/utils",
"version": "1.4.1",
"version": "1.5.0",
"description": "Common utility functions and TypeScript types.",
"keywords": [
"utility",
Expand Down
13 changes: 13 additions & 0 deletions packages/rollup-plugin-all-external/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
# rollup-plugin-all-external

## 1.1.0

### Minor Changes

- Support rollup v3 ([`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61))

* Updated to handle some monorepo situations better ([`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61))

### Patch Changes

- Updated dependencies [[`d0f6986`](https://github.com/paperdave/various/commit/d0f6986a6000a4d8888bf86a9cf5f566d0318e61)]:
- @paperdave/utils@1.5.0
4 changes: 2 additions & 2 deletions packages/rollup-plugin-all-external/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollup-plugin-all-external",
"version": "1.0.0",
"version": "1.1.0",
"description": "Simple plugin to set externals for libraries.",
"keywords": [
"rollup"
Expand All @@ -18,7 +18,7 @@
"build": "tsc && esbuild --outfile=./dist/index.js --platform=node --target=es2022 --format=esm --sourcemap --bundle src/index.ts --external:@paperdave/utils"
},
"dependencies": {
"@paperdave/utils": "workspace:^1.4.1"
"@paperdave/utils": "workspace:^1.5.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.0",
Expand Down

0 comments on commit a56d620

Please sign in to comment.