Skip to content

Commit c515dd7

Browse files
authored
Merge pull request #20408 from Simek/workspace-setup-integrity-check-fix-warnings
workspace: setup `@manypkg/cli` monorepo integrity tool, fix warnings
2 parents 7fc5668 + 9a38ca4 commit c515dd7

28 files changed

Lines changed: 45 additions & 44 deletions

File tree

bin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "bin",
33
"type": "module",
44
"dependencies": {
5-
"@types/node": "24.12.2",
5+
"@types/node": "^24.12.2",
66
"cheerio": "^1.1.2",
77
"fast-xml-parser": "^5.7.0",
88
"mongodb": "6.16.0"

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"@toast-ui/editor": "ui/bits/patches/@toast-ui__editor.patch"
1515
}
1616
},
17-
"dependencies": {
17+
"devDependencies": {
1818
"@lichess-org/chessground": "^10.1.1",
1919
"@lichess-org/pgn-viewer": "^2.6.0",
2020
"@types/lichess": "workspace:*",
@@ -54,6 +54,7 @@
5454
"i18n-file-gen": "pnpx tsx bin/i18n-file-gen.ts",
5555
"icon-files-gen": "python3 bin/gen/licon.py",
5656
"multilog": "pnpm serverlog & ui/build -w",
57+
"workspace-check": "pnpx @manypnk/cli check",
5758
"add-hooks": "git config get --all core.hooksPath | grep -Fxq bin/git-hooks || git config set --append core.hooksPath bin/git-hooks",
5859
"remove-hooks": "git config unset --value=bin/git-hooks core.hooksPath || true"
5960
},

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/analyse/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"chart": "workspace:*",
1313
"debounce-promise": "^3.1.2",
1414
"editor": "workspace:*",
15-
"keyboardMove": "workspace:*",
15+
"keyboard-move": "workspace:*",
1616
"lib": "workspace:*",
1717
"prop-types": "^15.8.1",
1818
"shepherd.js": "11.2.0",

ui/analyse/src/ctrl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { makeSanAndPlay } from 'chessops/san';
99
import { isNormal, type Move } from 'chessops/types';
1010
import { opposite, parseUci, makeSquare, roleToChar, makeUci, parseSquare } from 'chessops/util';
1111
import { normalizeMove } from 'chessops/variant';
12-
import { type ArrowKey, type KeyboardMove, ctrl as makeKeyboardMove } from 'keyboardMove';
12+
import { type ArrowKey, type KeyboardMove, ctrl as makeKeyboardMove } from 'keyboard-move';
1313

1414
import {
1515
defined,

ui/analyse/src/study/studyView.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { render as renderKeyboardMove } from 'keyboardMove';
1+
import { render as renderKeyboardMove } from 'keyboard-move';
22

33
import { blurIfPrimaryClick } from 'lib';
44
import { view as cevalView } from 'lib/ceval';

ui/analyse/src/view/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { render as renderKeyboardMove } from 'keyboardMove';
1+
import { render as renderKeyboardMove } from 'keyboard-move';
22

33
import { view as cevalView } from 'lib/ceval';
44
import { renderChat } from 'lib/chat/renderChat';

ui/bits/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"@yaireo/tagify": "4.17.9",
1717
"canvas-confetti": "^1.9.4",
1818
"cropperjs": "1.6.2",
19+
"crypto-random-string": "^5",
1920
"debounce-promise": "^3.1.2",
2021
"emoji-mart": "^5.6.0",
2122
"flatpickr": "^4.6.13",
@@ -28,8 +29,7 @@
2829
"prosemirror-view": "1.41.3",
2930
"qrcode": "^1.5.4",
3031
"shepherd.js": "11.2.0",
31-
"zxcvbn": "^4.4.2",
32-
"crypto-random-string": "^5"
32+
"zxcvbn": "^4.4.2"
3333
},
3434
"build": {
3535
"bundle": [

ui/botDev/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "botDev",
2+
"name": "bot-dev",
33
"private": true,
44
"typings": "devTypes",
55
"typesVersions": {

ui/botPlay/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "botPlay",
2+
"name": "bot-play",
33
"private": true,
44
"type": "module",
55
"dependencies": {

0 commit comments

Comments
 (0)