0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-06 20:40:08 -05:00

chore: unify dep and version

This commit is contained in:
Gao Sun 2021-07-25 22:36:22 +08:00
parent 77712167ba
commit 9752dacf85
No known key found for this signature in database
GPG key ID: 0F0EFA2E36639F31
4 changed files with 5 additions and 3 deletions

View file

@ -2,6 +2,6 @@
"packages": [ "packages": [
"packages/*" "packages/*"
], ],
"version": "0.0.0", "version": "0.1.0",
"npmClient": "yarn" "npmClient": "yarn"
} }

View file

@ -14,7 +14,7 @@
}, },
"dependencies": { "dependencies": {
"@logto/essentials": "^1.1.0-rc.1", "@logto/essentials": "^1.1.0-rc.1",
"@logto/schemas": "^1.1.0-rc.1", "@logto/schemas": "^0.1.0",
"dayjs": "^1.10.5", "dayjs": "^1.10.5",
"decamelize": "^5.0.0", "decamelize": "^5.0.0",
"dotenv": "^10.0.0", "dotenv": "^10.0.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "@logto/schemas", "name": "@logto/schemas",
"version": "1.1.0-rc.1", "version": "0.1.0",
"main": "lib/index.js", "main": "lib/index.js",
"repository": "https://github.com/logto-io/schemas", "repository": "https://github.com/logto-io/schemas",
"author": "Logto", "author": "Logto",
@ -8,6 +8,7 @@
"files": [ "files": [
"lib" "lib"
], ],
"private": true,
"scripts": { "scripts": {
"generate": "ts-node src/gen/index.ts && eslint --format pretty \"src/db-entries/**\" --fix", "generate": "ts-node src/gen/index.ts && eslint --format pretty \"src/db-entries/**\" --fix",
"build": "yarn generate && rm -rf lib/ && tsc --p tsconfig.build.json", "build": "yarn generate && rm -rf lib/ && tsc --p tsconfig.build.json",

View file

@ -2,6 +2,7 @@
"name": "@logto/ui", "name": "@logto/ui",
"version": "0.1.0", "version": "0.1.0",
"license": "UNLICENSED", "license": "UNLICENSED",
"private": true,
"scripts": { "scripts": {
"precommit": "lint-staged", "precommit": "lint-staged",
"dev:tsc": "tsc -b -w --preserveWatchOutput", "dev:tsc": "tsc -b -w --preserveWatchOutput",