Skip to content

Commit

Permalink
chore: bump dependencies (mysql: 2.17.1->2.18.0, axios: 0.19.1->0.19.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed Jan 23, 2020
1 parent c7ea1d1 commit 6889e5d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
3 changes: 2 additions & 1 deletion build/dep.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ interface Dependency {

for (const type of ['dependencies', 'devDependencies', 'peerDependencies', 'optionalDependencies'] as DependencyType[]) {
for (const dep in meta[type] || {}) {
if (workspaces[dep]) continue
// skip workspaces and symlinks
if (workspaces[dep] || meta[type][dep].startsWith('file:')) continue
if (!dependencies[dep]) dependencies[dep] = { dependents: [] }
dependencies[dep].dependents.push({ name, type })
}
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
"version": "1.0.0",
"license": "MIT",
"devDependencies": {
"@octokit/rest": "^16.37.0",
"@octokit/rest": "^16.38.1",
"@types/cross-spawn": "^6.0.1",
"@types/fs-extra": "^8.0.1",
"@types/jest": "^24.9.0",
"@types/node": "^13.1.8",
"@types/semver": "^6.2.0",
"@typescript-eslint/eslint-plugin": "^2.16.0",
"@typescript-eslint/parser": "^2.16.0",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"cac": "^6.5.5",
"cross-spawn": "^7.0.1",
"del": "^5.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/database-mysql/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
"dependencies": {
"koishi-core": "^1.6.0",
"koishi-utils": "^1.0.2",
"mysql": "^2.17.1"
"mysql": "^2.18.0"
}
}
2 changes: 1 addition & 1 deletion packages/koishi-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"koishi-test-utils": "^2.1.0"
},
"dependencies": {
"axios": "^0.19.1",
"axios": "^0.19.2",
"escape-string-regexp": "^2.0.0",
"koishi-utils": "^1.0.2",
"leven": "^3.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@types/jest": "^24.9.0"
},
"dependencies": {
"axios": "^0.19.1",
"axios": "^0.19.2",
"debug": "^4.1.1",
"get-port": "^5.1.1",
"koishi-core": "^1.6.0",
Expand Down
1 change: 1 addition & 0 deletions packages/test-utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export * from './database'
export * from './mocks'
export * from './utils'
export * from './server'
export * from './session'

jest.mock('koishi-utils', () => {
const utils1 = jest.requireActual('koishi-utils')
Expand Down

0 comments on commit 6889e5d

Please sign in to comment.