Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Jan 20, 2024
1 parent 1ccb447 commit b0b3b8e
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 16 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@root/yakumo",
"private": true,
"type": "module",
"version": "1.0.0",
"workspaces": [
"external/*",
Expand All @@ -11,7 +12,7 @@
"license": "MIT",
"scripts": {
"build": "tsc -b",
"yakumo": "node -r esbuild-register packages/core/src/cli",
"yakumo": "node --import tsx packages/core/src/cli",
"bump": "yarn yakumo version",
"dep": "yarn yakumo upgrade",
"pub": "yarn yakumo publish",
Expand All @@ -33,6 +34,7 @@
"eslint": "^8.55.0",
"mocha": "^9.2.2",
"shx": "^0.3.4",
"tsx": "^4.7.0",
"typescript": "^5.3.2"
}
}
12 changes: 7 additions & 5 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
{
"name": "yakumo",
"description": "Manage complex workspaces with ease",
"version": "1.0.0-alpha.7",
"version": "1.0.0-beta.2",
"type": "module",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"bin": "lib/cli.js",
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"files": [
"lib"
"lib",
"src"
],
"author": "Shigma <shigma10826@gmail.com>",
"license": "MIT",
Expand All @@ -34,9 +36,9 @@
"@types/yargs-parser": "^21.0.3"
},
"dependencies": {
"@cordisjs/cli": "^0.2.0",
"cordis": "^3.4.0",
"cosmokit": "^1.5.1",
"@cordisjs/cli": "^0.3.0",
"cordis": "^3.6.1",
"cosmokit": "^1.5.2",
"detect-indent": "^6.1.0",
"execa": "^5.1.1",
"get-registry": "^1.1.0",
Expand Down
7 changes: 4 additions & 3 deletions packages/esbuild/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "yakumo-esbuild",
"description": "Esbuild support for Yakumo",
"version": "1.0.0-alpha.2",
"version": "1.0.0-beta.1",
"type": "module",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand All @@ -28,10 +29,10 @@
],
"peerDependencies": {
"esbuild": "*",
"yakumo": "^1.0.0-alpha.7"
"yakumo": "^1.0.0-beta.2"
},
"dependencies": {
"tsconfig-utils": "^3.1.3",
"tsconfig-utils": "^4.0.3",
"yaml": "^2.3.4"
}
}
5 changes: 3 additions & 2 deletions packages/mocha/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "yakumo-mocha",
"description": "Mocha support for Yakumo",
"version": "1.0.0-alpha.1",
"version": "1.0.0-beta.0",
"type": "module",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand All @@ -28,7 +29,7 @@
],
"peerDependencies": {
"mocha": "^9",
"yakumo": "^1.0.0-alpha.7"
"yakumo": "^1.0.0-beta.2"
},
"devDependencies": {
"@types/mocha": "^9.1.1"
Expand Down
1 change: 1 addition & 0 deletions packages/test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"name": "@yakumojs/test-utils",
"version": "0.0.0",
"type": "module",
"main": "lib/index.js"
}
11 changes: 6 additions & 5 deletions packages/tsc/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"name": "yakumo-tsc",
"description": "Compile TypeScript for Yakumo",
"version": "1.0.0-alpha.2",
"version": "1.0.0-beta.0",
"type": "module",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
Expand Down Expand Up @@ -29,11 +30,11 @@
],
"peerDependencies": {
"typescript": "*",
"yakumo": "^1.0.0-alpha.7"
"yakumo": "^1.0.0-beta.2"
},
"dependencies": {
"atsc": "^1.2.2",
"dtsc": "^2.3.0",
"tsconfig-utils": "^3.1.3"
"atsc": "^2.0.1",
"dtsc": "^3.0.1",
"tsconfig-utils": "^4.0.3"
}
}

0 comments on commit b0b3b8e

Please sign in to comment.