0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

release: version packages (#3793)

* chore: pass arguments to version script

* release: version packages

---------

Co-authored-by: Gao Sun <gao@silverhand.io>
This commit is contained in:
silverhand-bot 2023-04-29 12:31:59 +08:00 committed by GitHub
parent 5a8442712f
commit 6fd1e9cc56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 11 deletions

View file

@ -1,9 +0,0 @@
---
"@logto/app-insights": minor
---
add custom events and new component
- implement `getEventName()` to create standard event name with the format `<component>/<event>[/data]`. E.g. `core/sign_in`.
- four new event components `core`, `console`, `blog`, and `website`.
- implement `<TrackOnce />` for tracking a custom event once

View file

@ -3,7 +3,7 @@ import { promisify } from 'node:util';
const execAsync = promisify(exec);
const cmd = ('pnpm changeset version');
const cmd = ['pnpm changeset version', ...process.argv.slice(2)].join(' ');
const catchCmdError = ({ stderr, stdout, code }) => {
console.log(stdout);

View file

@ -1,5 +1,15 @@
# @logto/app-insights
## 1.3.0
### Minor Changes
- 5a8442712: add custom events and new component
- implement `getEventName()` to create standard event name with the format `<component>/<event>[/data]`. E.g. `core/sign_in`.
- four new event components `core`, `console`, `blog`, and `website`.
- implement `<TrackOnce />` for tracking a custom event once
## 1.2.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@logto/app-insights",
"version": "1.2.0",
"version": "1.3.0",
"main": "lib/index.js",
"author": "Silverhand Inc. <contact@silverhand.io>",
"license": "MPL-2.0",