chore(release): version packages (#28)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
3619d86750
commit
3b2b21f729
13 changed files with 49 additions and 20 deletions
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/reporter-pino': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Implement the first version of the Pino reporter package
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/plugin-tools': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Try importing plugins (and reporters) using prefixes before importing without, this is to avoid issue with accidentaly importing other non-emigrate related packages. E.g. setting the reporter to "pino" would import the "pino" package without this fix and will import "@emigrate/reporter-pino" with this fix.
|
|
||||||
|
|
@ -1,5 +0,0 @@
|
||||||
---
|
|
||||||
'@emigrate/plugin-tools': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix a regression issue where plugins wasn't correctly loaded if specified as strings
|
|
||||||
|
|
@ -1,5 +1,13 @@
|
||||||
# @emigrate/cli
|
# @emigrate/cli
|
||||||
|
|
||||||
|
## 0.5.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [20ed2e8]
|
||||||
|
- Updated dependencies [d916043]
|
||||||
|
- @emigrate/plugin-tools@0.4.1
|
||||||
|
|
||||||
## 0.5.0
|
## 0.5.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/cli",
|
"name": "@emigrate/cli",
|
||||||
"version": "0.5.0",
|
"version": "0.5.1",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,13 @@
|
||||||
# @emigrate/plugin-generate-js
|
# @emigrate/plugin-generate-js
|
||||||
|
|
||||||
|
## 0.2.3
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [20ed2e8]
|
||||||
|
- Updated dependencies [d916043]
|
||||||
|
- @emigrate/plugin-tools@0.4.1
|
||||||
|
|
||||||
## 0.2.2
|
## 0.2.2
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/plugin-generate-js",
|
"name": "@emigrate/plugin-generate-js",
|
||||||
"version": "0.2.2",
|
"version": "0.2.3",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
# @emigrate/plugin-tools
|
# @emigrate/plugin-tools
|
||||||
|
|
||||||
|
## 0.4.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 20ed2e8: Try importing plugins (and reporters) using prefixes before importing without, this is to avoid issue with accidentaly importing other non-emigrate related packages. E.g. setting the reporter to "pino" would import the "pino" package without this fix and will import "@emigrate/reporter-pino" with this fix.
|
||||||
|
- d916043: Fix a regression issue where plugins wasn't correctly loaded if specified as strings
|
||||||
|
|
||||||
## 0.4.0
|
## 0.4.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/plugin-tools",
|
"name": "@emigrate/plugin-tools",
|
||||||
"version": "0.4.0",
|
"version": "0.4.1",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
13
packages/reporter-pino/CHANGELOG.md
Normal file
13
packages/reporter-pino/CHANGELOG.md
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
# @emigrate/reporter-pino
|
||||||
|
|
||||||
|
## 0.1.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- 3619d86: Implement the first version of the Pino reporter package
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [20ed2e8]
|
||||||
|
- Updated dependencies [d916043]
|
||||||
|
- @emigrate/plugin-tools@0.4.1
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/reporter-pino",
|
"name": "@emigrate/reporter-pino",
|
||||||
"version": "0.0.0",
|
"version": "0.1.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,13 @@
|
||||||
# @emigrate/storage-fs
|
# @emigrate/storage-fs
|
||||||
|
|
||||||
|
## 0.2.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [20ed2e8]
|
||||||
|
- Updated dependencies [d916043]
|
||||||
|
- @emigrate/plugin-tools@0.4.1
|
||||||
|
|
||||||
## 0.2.0
|
## 0.2.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@emigrate/storage-fs",
|
"name": "@emigrate/storage-fs",
|
||||||
"version": "0.2.0",
|
"version": "0.2.1",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue