Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all non-major dependencies #182

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jike-sdk",
"version": "0.27.0",
"packageManager": "pnpm@9.0.5",
"packageManager": "pnpm@9.15.9",
"description": "Jike Ⓙ SDK for Node.js",
"type": "module",
"keywords": [
@@ -59,27 +59,27 @@
},
"dependencies": {
"eventemitter3": "^5.0.1",
"ky": "^1.2.3"
"ky": "^1.8.0"
},
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@sxzz/eslint-config": "^3.9.0",
"@sxzz/prettier-config": "^2.0.1",
"@sxzz/eslint-config": "^3.17.4",
"@sxzz/prettier-config": "^2.2.1",
"@types/md5": "^2.3.5",
"@types/node": "^20.12.6",
"@vitest/ui": "^2.0.3",
"bumpp": "^9.4.0",
"esbuild": "^0.20.2",
"eslint": "^9.0.0",
"@types/node": "^20.17.30",
"@vitest/ui": "^2.1.9",
"bumpp": "^9.11.1",
"esbuild": "^0.25.2",
"eslint": "^9.24.0",
"md5": "^2.3.0",
"rollup": "^4.14.1",
"serve": "^14.2.1",
"sharp": "^0.33.3",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.4",
"vitest": "^2.0.3"
"rollup": "^4.39.0",
"serve": "^14.2.4",
"sharp": "^0.34.1",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typedoc": "^0.28.2",
"typescript": "^5.8.3",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=18.12.0"
Loading

Unchanged files with check annotations Beta

import * as users from './users'
import * as userRelation from './user-relation'

Check warning on line 2 in src/api/index.ts

GitHub Actions / lint

Expected "./user-relation" to come before "./users"
import * as posts from './posts'

Check warning on line 3 in src/api/index.ts

GitHub Actions / lint

Expected "./posts" to come before "./user-relation"
import * as recommendFeed from './recommend-feed'
import * as personalUpdate from './personal-update'

Check warning on line 5 in src/api/index.ts

GitHub Actions / lint

Expected "./personal-update" to come before "./recommend-feed"
import * as notifications from './notifications'

Check warning on line 6 in src/api/index.ts

GitHub Actions / lint

Expected "./notifications" to come before "./personal-update"
import * as comments from './comments'

Check warning on line 7 in src/api/index.ts

GitHub Actions / lint

Expected "./comments" to come before "./notifications"
import * as upload from './upload'
import * as stories from './stories'

Check warning on line 9 in src/api/index.ts

GitHub Actions / lint

Expected "./stories" to come before "./upload"
import * as mediaMeta from './media-meta'
import * as topics from './topics'
ListPrimaryCommentOption,
PaginationOption,
} from '../types/options'
import type { Comments } from '../types/api-responses'

Check warning on line 9 in src/api/comments.ts

GitHub Actions / lint

Expected "../types/api-responses" to come before "../types/options"
export const add = <T = Comments.AddResponse>(
targetType: PostTypeRaw,
import { type Api, api } from './api'

Check warning on line 1 in src/api-client.ts

GitHub Actions / lint

Expected "api" to come before "Api"
import { type ApiConfig, setApiConfig } from './request'

Check warning on line 2 in src/api-client.ts

GitHub Actions / lint

Expected "setApiConfig" to come before "ApiConfig"
/**
* API 客户端
[API Reference](https://jike-sdk.sxzz.moe/)
```ts
import { ApiClient, api, setAccessToken, setApiConfig } from 'jike-sdk'

Check warning on line 162 in README.md

GitHub Actions / lint

Expected "api" to come before "ApiClient"
// 自行在 GitHub 搜索「jike endpoint」探索配置
const apiConfig = {