Skip to content

Commit cb19287

Browse files
authored
release: @flex-development/[email protected] (#17)
1 parent c682683 commit cb19287

File tree

3 files changed

+32
-3
lines changed

3 files changed

+32
-3
lines changed

packages/exceptions/CHANGELOG.md

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,34 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [7.0.0](https://github.com/flex-development/exceptions/compare/[email protected]@7.0.0) (2021-11-03)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* **typescript:** drop `EmptyString`
11+
12+
### :hammer: Build
13+
14+
* **deps:** use `@flex-development/[email protected]` ([52c1630](https://github.com/flex-development/exceptions/commit/52c1630e05b583de090b7ed91855aa6483ec151b))
15+
16+
17+
### :recycle: Code Improvements
18+
19+
* **typescript:** drop `EmptyString` ([3a53a6f](https://github.com/flex-development/exceptions/commit/3a53a6f3c2efd58ee7b1a72f94b15f43d288e3a6))
20+
21+
22+
### :pencil2: Housekeeping
23+
24+
* **tools:** reorganize build workflow ([8749385](https://github.com/flex-development/exceptions/commit/8749385518d2acb0b0d3537ccdc076d922540205))
25+
* **typescript:** fix `axios/lib/core/createError` typings ([7452efd](https://github.com/flex-development/exceptions/commit/7452efd0b4146018761bb277a6b4c756a13d9eeb))
26+
27+
28+
### :bug: Fixes
29+
30+
* **exceptions:** provide `AggregateError` polyfill ([c682683](https://github.com/flex-development/exceptions/commit/c682683e579bb6b1de1fa58ef1e9b1f60fe2c307))
31+
* package exports ([3c07221](https://github.com/flex-development/exceptions/commit/3c07221b381aef7875df9bf0d194f3f6e8b3f02d))
32+
533
### [6.0.1](https://github.com/flex-development/exceptions/compare/[email protected]@6.0.1) (2021-10-16)
634

735

@@ -41,7 +69,7 @@ All notable changes to this project will be documented in this file. See [standa
4169
### :recycle: Code Improvements
4270

4371
* **guards:** move type guards to separate directory ([611d70f](https://github.com/flex-development/exceptions/commit/611d70f9983b6e86bdff0dabd5ff77de2fdf73a7))
44-
* **typescript:** `FirebaseError` ([c602e7d](https://github.com/flex-development/exceptions/commit/c602e7d00c981afa24d750bb67005afa44465966)), closes [#L42](https://github.com/flex-development/exceptions/issues/L42) [#L74](https://github.com/flex-development/exceptions/issues/L74)
72+
* **typescript:** `FirebaseError` ([c602e7d](https://github.com/flex-development/exceptions/commit/c602e7d00c981afa24d750bb67005afa44465966))
4573
* **typescript:** drop all axios type definitions ([c774c01](https://github.com/flex-development/exceptions/commit/c774c01e6a528a269214ddcdac99c72b257ad3ba))
4674

4775

packages/exceptions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@flex-development/exceptions",
33
"description": "Custom error handling",
4-
"version": "6.0.1",
4+
"version": "7.0.0",
55
"keywords": [
66
"error handling",
77
"exceptions",

tools/cli/release.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,8 @@ logger(
173173
)
174174

175175
// Run release workflow
176-
grease(merge({}, options, argv)).catch((error: any) => {
176+
// @ts-expect-error Property 'default' does not exist on type
177+
grease.default(merge({}, options, argv)).catch((error: any) => {
177178
if (error.stderr) return
178179
else sh.echo(ch.bold.red(inspect(error, false, null)))
179180
})

0 commit comments

Comments
 (0)