-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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: 2024-01-22 10:50時点のdevelopにてCIがコケている #13060
Changes from all commits
f007419
7709b81
6d9c66d
4ec5939
519b9b8
6770f67
8a19681
7de5138
99e5aac
2c0de8b
bdbc201
4d7f46d
2a8cf5c
24cc23b
614230d
ec41443
1a41d83
3590ea9
312d222
b039da8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,9 +110,9 @@ | |
"@types/tinycolor2": "1.4.6", | ||
"@types/uuid": "9.0.7", | ||
"@types/ws": "8.5.10", | ||
"@typescript-eslint/eslint-plugin": "6.19.0", | ||
"@typescript-eslint/parser": "6.19.0", | ||
"@vitest/coverage-v8": "1.2.1", | ||
"@typescript-eslint/eslint-plugin": "6.18.1", | ||
"@typescript-eslint/parser": "6.18.1", | ||
"@vitest/coverage-v8": "0.34.6", | ||
"@vue/runtime-core": "3.4.15", | ||
"acorn": "8.11.3", | ||
"cross-env": "7.0.3", | ||
|
@@ -134,7 +134,7 @@ | |
"storybook": "7.6.10", | ||
"storybook-addon-misskey-theme": "github:misskey-dev/storybook-addon-misskey-theme", | ||
"vite-plugin-turbosnap": "1.0.3", | ||
"vitest": "1.2.1", | ||
"vitest": "0.34.6", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. バージョンアップにより仕様が変わったのか、locale.jsの読み込みに失敗するので前のバージョンに戻しました。 |
||
"vitest-fetch-mock": "0.2.2", | ||
"vue-eslint-parser": "9.4.0", | ||
"vue-tsc": "1.8.27" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,11 +24,9 @@ | |
}, | ||
"devDependencies": { | ||
"@misskey-dev/eslint-plugin": "1.0.0", | ||
"@types/matter-js": "0.19.6", | ||
"@types/node": "20.11.5", | ||
"@types/seedrandom": "3.0.8", | ||
"@typescript-eslint/eslint-plugin": "6.19.0", | ||
"@typescript-eslint/parser": "6.19.0", | ||
"@typescript-eslint/eslint-plugin": "6.18.1", | ||
"@typescript-eslint/parser": "6.18.1", | ||
"eslint": "8.56.0", | ||
"nodemon": "3.0.2", | ||
"typescript": "5.3.3" | ||
|
@@ -37,6 +35,8 @@ | |
"built" | ||
], | ||
"dependencies": { | ||
"@types/matter-js": "0.19.6", | ||
"@types/seedrandom": "3.0.8", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 起動時に必要なパッケージなのでdevからこちらに移動しました |
||
"eventemitter3": "5.0.1", | ||
"matter-js": "0.19.0", | ||
"seedrandom": "3.0.5" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ | |
"name": "misskey-js", | ||
"version": "0.0.16", | ||
"description": "Misskey SDK for JavaScript", | ||
"types": "./built/dts/index.d.ts", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. tsdはexportsを解釈しない?ようなので、typesの記載を追加しています |
||
"exports": { | ||
".": { | ||
"import": "./built/esm/index.js", | ||
|
@@ -39,8 +40,8 @@ | |
"@swc/jest": "0.2.31", | ||
"@types/jest": "29.5.11", | ||
"@types/node": "20.11.5", | ||
"@typescript-eslint/eslint-plugin": "6.19.0", | ||
"@typescript-eslint/parser": "6.19.0", | ||
"@typescript-eslint/eslint-plugin": "6.18.1", | ||
"@typescript-eslint/parser": "6.18.1", | ||
"eslint": "8.56.0", | ||
"jest": "29.7.0", | ||
"jest-fetch-mock": "3.0.3", | ||
|
@@ -52,7 +53,9 @@ | |
"typescript": "5.3.3" | ||
}, | ||
"files": [ | ||
"built" | ||
"built", | ||
"built/esm", | ||
"built/dts" | ||
], | ||
"dependencies": { | ||
"@swc/cli": "0.1.63", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ | |
}, | ||
"devDependencies": { | ||
"@misskey-dev/eslint-plugin": "1.0.0", | ||
"@typescript-eslint/parser": "6.19.0", | ||
"@typescript-eslint/parser": "6.18.1", | ||
"@typescript/lib-webworker": "npm:@types/[email protected]", | ||
"eslint": "8.56.0", | ||
"eslint-plugin-import": "2.29.1", | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
eslintのバグを踏んでしまうようなので、バージョンを1つ落としました