Skip to content

Commit

Permalink
chore: bump dep version (cac, get-port)
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Jan 19, 2020
1 parent e5cfad6 commit dfd279c
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build/dep.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ interface Dependency {
for (const { name, type } of dependents) {
const workspace = workspaces[name]
const oldVersion = workspace.meta[type][dep]
if (gt(version, oldVersion.slice(1))) {
if (gt(version, oldVersion.replace(/^[~^]/, ''))) {
let update: boolean
const message = `${name} > ${yellow(dep)}: ${cyan(oldVersion)} -> ${green(version)}`
if (!satisfies(version, oldVersion)) {
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@octokit/rest": "^16.36.0",
"@octokit/rest": "^16.37.0",
"@types/cross-spawn": "^6.0.1",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.0.25",
"@types/node": "^13.1.6",
"@types/jest": "^24.9.0",
"@types/node": "^13.1.8",
"@types/semver": "^6.2.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"cac": "^6.5.4",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"cac": "^6.5.5",
"cross-spawn": "^7.0.1",
"del": "^5.1.0",
"eslint": "^6.8.0",
Expand All @@ -47,7 +47,7 @@
"prompts": "^2.3.0",
"semver": "^7.1.1",
"ts-jest": "^24.3.0",
"ts-node": "^8.6.1",
"typescript": "^3.7.4"
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}
2 changes: 1 addition & 1 deletion packages/koishi-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@types/prompts": "^2.0.3"
},
"dependencies": {
"cac": "^6.5.4",
"cac": "^6.5.5",
"js-yaml": "^3.13.1",
"kleur": "^3.0.3",
"koishi-core": "^1.4.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/koishi-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
],
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/ws": "^6.0.4",
"get-port": "^5.1.0",
"@types/ws": "^7.2.0",
"get-port": "^5.1.1",
"koishi-database-memory": "^1.0.0",
"koishi-test-utils": "^2.0.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,12 @@
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^24.0.25"
"@types/jest": "^24.9.0"
},
"dependencies": {
"axios": "^0.19.1",
"debug": "^4.1.1",
"get-port": "^5.1.0",
"get-port": "^5.1.1",
"koishi-utils": "^1.0.2"
}
}

0 comments on commit dfd279c

Please sign in to comment.