Skip to content

Commit

Permalink
chore: bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Mar 5, 2024
1 parent 1623516 commit 6811721
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 9 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install
run: yarn --no-immutable
- name: Build
run: yarn build
run: yarn tsc -b

test:
runs-on: ubuntu-latest
Expand All @@ -48,6 +48,9 @@ jobs:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn --no-immutable
# FIXME tsx not working
- name: Build
run: yarn tsc -b
- name: Unit Test
run: yarn test:json
- name: Report Coverage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
],
"license": "MIT",
"scripts": {
"build": "tsc -b",
"yakumo": "node --import tsx packages/core/src/cli",
"build": "yarn yakumo build",
"bump": "yarn yakumo version",
"dep": "yarn yakumo upgrade",
"pub": "yarn yakumo publish",
Expand Down
3 changes: 2 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"./test": "./lib/plugins/test.js",
"./upgrade": "./lib/plugins/upgrade.js",
"./version": "./lib/plugins/version.js",
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"engines": {
Expand Down Expand Up @@ -48,7 +49,7 @@
"@types/yargs-parser": "^21.0.3"
},
"dependencies": {
"cordis": "^3.13.2",
"cordis": "^3.13.3",
"cosmokit": "^1.5.2",
"detect-indent": "^6.1.0",
"execa": "^5.1.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/esbuild/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "yakumo-esbuild",
"description": "Esbuild support for Yakumo",
"version": "1.0.0-beta.2",
"version": "1.0.0-beta.5",
"type": "module",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
Expand Down Expand Up @@ -29,10 +29,10 @@
],
"peerDependencies": {
"esbuild": "*",
"yakumo": "^1.0.0-beta.6"
"yakumo": "^1.0.0-beta.11"
},
"dependencies": {
"dumble": "^0.1.2",
"dumble": "^0.1.3",
"tsconfig-utils": "^4.0.5"
}
}
2 changes: 1 addition & 1 deletion packages/mocha/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
],
"peerDependencies": {
"mocha": "^9",
"yakumo": "^1.0.0-beta.6"
"yakumo": "^1.0.0-beta.11"
},
"devDependencies": {
"@types/mocha": "^9.1.1"
Expand Down
4 changes: 2 additions & 2 deletions packages/tsc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@
],
"peerDependencies": {
"typescript": "*",
"yakumo": "^1.0.0-beta.6"
"yakumo": "^1.0.0-beta.11"
},
"dependencies": {
"atsc": "^2.0.1",
"dtsc": "^3.0.2",
"dtsc": "^3.0.4",
"tsconfig-utils": "^4.0.5"
}
}
6 changes: 6 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,11 @@
"@yakumojs/*": ["packages/*/src"],
},
},
"references": [
{ "path": "./packages/core" },
{ "path": "./packages/esbuild" },
{ "path": "./packages/mocha" },
{ "path": "./packages/tsc" },
],
"files": [],
}

0 comments on commit 6811721

Please sign in to comment.