-
Notifications
You must be signed in to change notification settings - Fork 1
Update all (major) #274
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
base: master
Are you sure you want to change the base?
Update all (major) #274
Changes from all commits
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 |
|---|---|---|
|
|
@@ -22,8 +22,8 @@ | |
| "dependencies": { | ||
| "@js-joda/core": "5.6.5", | ||
| "ajv": "8.17.1", | ||
| "cross-env": "7.0.3", | ||
| "express": "4.21.2", | ||
| "cross-env": "10.1.0", | ||
| "express": "5.2.1", | ||
| "fp-ts": "2.16.10", | ||
| "io-ts": "2.2.22", | ||
| "parsimmon": "1.18.1", | ||
|
|
@@ -32,29 +32,29 @@ | |
| "string-similarity": "4.0.4", | ||
| "winston": "3.17.0", | ||
| "yaml": "2.7.1", | ||
| "yargs": "17.7.2" | ||
| "yargs": "18.0.0" | ||
|
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. Bug: Yargs 18 ESM-only breaks CommonJS require callsThe update to 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. yargs 18 removes
|
||
| }, | ||
| "devDependencies": { | ||
| "@types/body-parser": "1.19.5", | ||
| "@types/express": "5.0.1", | ||
| "@types/get-port": "4.2.0", | ||
| "@types/inquirer": "8.2.10", | ||
| "@types/jest": "29.5.14", | ||
| "@types/jest": "30.0.0", | ||
| "@types/nock": "11.1.0", | ||
| "@types/node": "22.15.3", | ||
| "@types/node": "25.5.0", | ||
| "@types/parsimmon": "1.10.9", | ||
| "@types/query-string": "6.3.0", | ||
| "@types/semver": "7.7.0", | ||
| "@types/string-similarity": "4.0.2", | ||
| "@types/supertest": "6.0.3", | ||
| "@types/supertest": "7.2.0", | ||
| "@types/winston": "2.4.4", | ||
| "@types/yaml": "1.9.7", | ||
| "copy-webpack-plugin": "9.1.0", | ||
| "env-editor": "0.5.0", | ||
| "get-port": "7.1.0", | ||
| "jest": "29.7.0", | ||
| "jest": "30.3.0", | ||
| "jest-junit": "16.0.0", | ||
| "lerna": "8.2.2", | ||
| "lerna": "9.0.7", | ||
| "nock": "14.0.4", | ||
| "nodemon": "3.1.10", | ||
| "npm-run-all": "4.1.5", | ||
|
|
@@ -68,7 +68,7 @@ | |
| "tslib": "2.8.1", | ||
| "typescript": "5.8.3", | ||
| "webpack": "5.99.7", | ||
| "webpack-cli": "6.0.1", | ||
| "webpack-cli": "7.0.2", | ||
| "webpack-dev-server": "5.2.1", | ||
| "webpack-shell-plugin-next": "2.3.2" | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,20 +6,20 @@ | |
| "dependencies": { | ||
| "@emotion/react": "11.14.0", | ||
| "@emotion/styled": "11.14.0", | ||
| "@mui/icons-material": "6.4.11", | ||
| "@mui/material": "6.4.11", | ||
| "@mui/icons-material": "7.3.9", | ||
| "@mui/material": "7.3.9", | ||
| "@mui/styles": "6.4.8", | ||
| "@types/axios": "0.14.4", | ||
| "@types/node": "22.15.3", | ||
| "@types/node": "25.5.0", | ||
| "@types/react": "19.1.2", | ||
| "@types/react-dom": "19.1.2", | ||
| "axios": "1.9.0", | ||
| "github-markdown-css": "5.8.1", | ||
| "react": "19.1.0", | ||
| "react-dom": "19.1.0", | ||
| "react-markdown": "9.1.0", | ||
| "react-markdown": "10.1.0", | ||
|
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. Bug: Removed
|
||
| "react-scripts": "5.0.1", | ||
| "react-syntax-highlighter": "15.6.1", | ||
| "react-syntax-highlighter": "16.1.1", | ||
| "react-virtualized": "9.22.6", | ||
| "remark-gfm": "4.0.1", | ||
| "typescript": "5.8.3", | ||
|
|
||


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.
Bug: Yargs 18 singleton API removed breaks CLI initialization
The
yargs18.0.0 upgrade removed the singleton usage pattern (yargs().argv). The CLI code inpackages/snage/src/index.tsstill uses this deprecated pattern, causing the CLI to fail at runtime or parse arguments incorrectly.