Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Plumbiu committed Dec 29, 2023
1 parent 2da1540 commit ac9a102
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 19 deletions.
37 changes: 19 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"name": "truth-cli-monorepo",
"version": "1.0.0",
"type": "module",
"scripts": {
Expand All @@ -19,34 +20,34 @@
},
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@plumbiu/eslint-config": "^0.1.10",
"@plumbiu/eslint-config": "^0.2.0",
"@types/minimist": "^1.2.5",
"@types/node": "^20.10.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vitest/coverage-v8": "^0.34.6",
"@types/node": "^20.10.5",
"@vitejs/plugin-vue": "^5.0.0",
"@vitest/coverage-v8": "^1.1.0",
"commitizen": "^4.3.0",
"cz-git": "^1.7.1",
"esbuild": "^0.19.8",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"cz-git": "^1.8.0",
"esbuild": "^0.19.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"esno": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"lint-staged": "^15.2.0",
"minimist": "^1.2.8",
"picocolors": "^1.0.0",
"prettier": "^3.1.0",
"puppeteer": "^21.5.2",
"terser": "^5.24.0",
"typescript": "^5.3.2",
"unplugin-auto-import": "^0.17.1",
"unplugin-vue-components": "^0.25.2",
"vite": "^5.0.2",
"prettier": "^3.1.1",
"puppeteer": "^21.6.1",
"terser": "^5.26.0",
"typescript": "^5.3.3",
"unplugin-auto-import": "^0.17.3",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.0.10",
"vite-plugin-compression2": "^0.11.0",
"vite-plugin-singlefile": "^0.13.5",
"vitest": "^0.34.6"
"vitest": "^1.1.0"
},
"config": {
"commitizen": {
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/relations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export function genRelations() {
if (dir.name === '.bin' || !dir.isDirectory()) {
continue
}
const filePath = `${pkgPath}/package.json`
const filePath = path.join(pkgPath, 'package.json')
if (fs.existsSync(filePath)) {
const pkg = useReadFile(filePath)
const { name, version, dependencies, devDependencies, homepage } = pkg
Expand Down

0 comments on commit ac9a102

Please sign in to comment.