mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
Merge pull request #2461 from logto-io/patch/gao-fix-alteration-scripts
fix: alteration scripts
This commit is contained in:
commit
98e99c4cc0
26 changed files with 62 additions and 9 deletions
|
@ -19,6 +19,7 @@
|
||||||
"grumpy-clocks-refuse",
|
"grumpy-clocks-refuse",
|
||||||
"quick-turtles-joke",
|
"quick-turtles-joke",
|
||||||
"thin-oranges-act",
|
"thin-oranges-act",
|
||||||
|
"tricky-mirrors-act",
|
||||||
"unlucky-lizards-agree"
|
"unlucky-lizards-agree"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
5
.changeset/tricky-mirrors-act.md
Normal file
5
.changeset/tricky-mirrors-act.md
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
"@logto/schemas": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
Update alteration script names after versioning
|
3
.github/workflows/release.yml
vendored
3
.github/workflows/release.yml
vendored
|
@ -1,6 +1,7 @@
|
||||||
name: Release
|
name: Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
|
@ -113,6 +114,8 @@ jobs:
|
||||||
with:
|
with:
|
||||||
# Use our customized publish flow. See https://github.com/changesets/changesets/issues/833 for the limit of changesets.
|
# Use our customized publish flow. See https://github.com/changesets/changesets/issues/833 for the limit of changesets.
|
||||||
publish: node .scripts/publish.js
|
publish: node .scripts/publish.js
|
||||||
|
# `changeset version` won't run version lifecycle scripts, see https://github.com/changesets/changesets/issues/860
|
||||||
|
version: pnpm ci:version
|
||||||
commit: 'release: version packages'
|
commit: 'release: version packages'
|
||||||
title: 'release: version packages'
|
title: 'release: version packages'
|
||||||
# Create by our rules defined in `/.changeset/README.md`.
|
# Create by our rules defined in `/.changeset/README.md`.
|
||||||
|
|
|
@ -56,4 +56,4 @@ if (taggedPackages.length === 0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
execSync('pnpm -r publish');
|
execSync('pnpm -r publish');
|
||||||
execSync('git push --tags');
|
execSync('git push --follow-tags');
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
"start": "cd packages/core && NODE_ENV=production node .",
|
"start": "cd packages/core && NODE_ENV=production node .",
|
||||||
"cli": "logto",
|
"cli": "logto",
|
||||||
"alteration": "logto db alt",
|
"alteration": "logto db alt",
|
||||||
|
"//": "# `changeset version` won't run version lifecycle scripts, see https://github.com/changesets/changesets/issues/860",
|
||||||
|
"ci:version": "changeset version && pnpm -r version",
|
||||||
"ci:build": "pnpm -r build",
|
"ci:build": "pnpm -r build",
|
||||||
"ci:lint": "pnpm -r --parallel lint",
|
"ci:lint": "pnpm -r --parallel lint",
|
||||||
"ci:stylelint": "pnpm -r --parallel stylelint",
|
"ci:stylelint": "pnpm -r --parallel stylelint",
|
||||||
|
|
|
@ -1,5 +1,13 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 1.0.0-beta.14
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [2d45cc3e]
|
||||||
|
- @logto/schemas@1.0.0-beta.14
|
||||||
|
- @logto/shared@1.0.0-beta.14
|
||||||
|
|
||||||
## 1.0.0-beta.13
|
## 1.0.0-beta.13
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@logto/cli",
|
"name": "@logto/cli",
|
||||||
"version": "1.0.0-beta.13",
|
"version": "1.0.0-beta.14",
|
||||||
"description": "Logto CLI.",
|
"description": "Logto CLI.",
|
||||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||||
"homepage": "https://github.com/logto-io/logto#readme",
|
"homepage": "https://github.com/logto-io/logto#readme",
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 1.0.0-beta.14
|
||||||
|
|
||||||
## 1.0.0-beta.13
|
## 1.0.0-beta.13
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@logto/console",
|
"name": "@logto/console",
|
||||||
"version": "1.0.0-beta.13",
|
"version": "1.0.0-beta.14",
|
||||||
"description": "> TODO: description",
|
"description": "> TODO: description",
|
||||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||||
"homepage": "https://github.com/logto-io/logto#readme",
|
"homepage": "https://github.com/logto-io/logto#readme",
|
||||||
|
|
|
@ -1,5 +1,14 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 1.0.0-beta.14
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [2d45cc3e]
|
||||||
|
- @logto/schemas@1.0.0-beta.14
|
||||||
|
- @logto/cli@1.0.0-beta.14
|
||||||
|
- @logto/shared@1.0.0-beta.14
|
||||||
|
|
||||||
## 1.0.0-beta.13
|
## 1.0.0-beta.13
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@logto/core",
|
"name": "@logto/core",
|
||||||
"version": "1.0.0-beta.13",
|
"version": "1.0.0-beta.14",
|
||||||
"description": "The open source identity solution.",
|
"description": "The open source identity solution.",
|
||||||
"main": "build/index.js",
|
"main": "build/index.js",
|
||||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 1.0.0-beta.14
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- @logto/cli@1.0.0-beta.14
|
||||||
|
|
||||||
## 1.0.0-beta.13
|
## 1.0.0-beta.13
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@logto/create",
|
"name": "@logto/create",
|
||||||
"version": "1.0.0-beta.13",
|
"version": "1.0.0-beta.14",
|
||||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 1.0.0-beta.14
|
||||||
|
|
||||||
## 1.0.0-beta.13
|
## 1.0.0-beta.13
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@logto/integration-tests",
|
"name": "@logto/integration-tests",
|
||||||
"version": "1.0.0-beta.13",
|
"version": "1.0.0-beta.14",
|
||||||
"description": "Integration tests for Logto.",
|
"description": "Integration tests for Logto.",
|
||||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
|
|
|
@ -1,5 +1,11 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 1.0.0-beta.14
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 2d45cc3e: Update alteration script names after versioning
|
||||||
|
|
||||||
## 1.0.0-beta.13
|
## 1.0.0-beta.13
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@logto/schemas",
|
"name": "@logto/schemas",
|
||||||
"version": "1.0.0-beta.13",
|
"version": "1.0.0-beta.14",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 1.0.0-beta.14
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- Updated dependencies [2d45cc3e]
|
||||||
|
- @logto/schemas@1.0.0-beta.14
|
||||||
|
|
||||||
## 1.0.0-beta.13
|
## 1.0.0-beta.13
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@logto/shared",
|
"name": "@logto/shared",
|
||||||
"version": "1.0.0-beta.13",
|
"version": "1.0.0-beta.14",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"author": "Silverhand Inc. <contact@silverhand.io>",
|
"author": "Silverhand Inc. <contact@silverhand.io>",
|
||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## 1.0.0-beta.14
|
||||||
|
|
||||||
## 1.0.0-beta.13
|
## 1.0.0-beta.13
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@logto/ui",
|
"name": "@logto/ui",
|
||||||
"version": "1.0.0-beta.13",
|
"version": "1.0.0-beta.14",
|
||||||
"license": "MPL-2.0",
|
"license": "MPL-2.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Loading…
Reference in a new issue