Skip to content

Commit bcdb47a

Browse files
committed
chore(web): bump dependencies
1 parent f3f444f commit bcdb47a

File tree

9 files changed

+81
-71
lines changed

9 files changed

+81
-71
lines changed

package-lock.json

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
"dependencies": {
1010
"@emotion/react": "^11.11.4",
1111
"@emotion/styled": "^11.11.5",
12-
"@mui/material": "^5.15.19",
13-
"@mui/x-date-pickers": "^7.6.2",
12+
"@mui/material": "^5.15.21",
13+
"@mui/x-date-pickers": "^7.8.0",
1414
"formik": "^2.4.6",
1515
"luxon": "^3.4.4",
1616
"react": "18.3.1",
1717
"react-dom": "18.3.1",
18-
"react-router-dom": "^6.23.1",
18+
"react-router-dom": "^6.24.0",
1919
"tslib": "^2.3.0",
2020
"zod": "^3.23.8"
2121
},

tools/nx-python/src/executors/release-publish/executor.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,21 @@ export default async function runExecutor(options: ReleaseExecutorSchema, contex
1515

1616
const packageRoot = joinPathFragments(context.root, options.packageRoot ?? projectConfig.root);
1717

18-
const pdmPublishCommandSegments = [`pdm publish`];
18+
const command = "pdm publish";
1919

2020
try {
21-
const command = pdmPublishCommandSegments.join(" ");
2221
output.logSingleLine(`Running "${command}"...`);
2322

2423
if (isDryRun) {
25-
console.log(`Would publish to https://pypi.org, but '[dry-run]' was set`);
24+
output.logSingleLine("Would publish to https://pypi.org, but '[dry-run]' was set");
2625
} else {
2726
execSync(command, {
2827
maxBuffer: LARGE_BUFFER,
2928
cwd: packageRoot,
3029
stdio: "inherit",
3130
});
3231

33-
console.log("");
34-
console.log(`Published to https://pypi.org`);
32+
output.logSingleLine("Published to https://pypi.org");
3533
}
3634

3735
return {

web/components/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
"require": "./index.js"
1010
}
1111
},
12+
"peerDependencies": {
13+
"react": "^18.3.1",
14+
"@mui/material": "^5.15.21"
15+
},
1216
"repository": {
1317
"type": "git",
1418
"url": "https://github.com/SFTtech/sftkit",

web/components/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ export * from "./lib/DataGridTitle";
33
export * from "./lib/Loading";
44
export * from "./lib/NumericInput";
55
export * from "./lib/Select";
6-
export * from "./lib/TestModeDisclaimer";

web/components/src/lib/TestModeDisclaimer.tsx

Lines changed: 0 additions & 20 deletions
This file was deleted.

web/form-components/package.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,15 @@
99
"require": "./index.js"
1010
}
1111
},
12+
"peerDependencies": {
13+
"react": "^18.3.1",
14+
"@mui/material": "^5.15.21",
15+
"@mui/x-date-pickers": "^7.8.0",
16+
"luxon": "^3.4.4",
17+
"formik": "^2.4.6",
18+
"@sftkit/utils": "^0.2.0",
19+
"@sftkit/components": "^0.2.0"
20+
},
1221
"repository": {
1322
"type": "git",
1423
"url": "https://github.com/SFTtech/sftkit",

web/modal-provider/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"require": "./index.js"
1010
}
1111
},
12+
"peerDependencies": {
13+
"react": "^18.3.1",
14+
"react-dom": "^18.3.1",
15+
"@mui/material": "^5.15.21"
16+
},
1217
"repository": {
1318
"type": "git",
1419
"url": "https://github.com/SFTtech/sftkit",

web/utils/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
"require": "./index.js"
1010
}
1111
},
12+
"peerDependencies": {
13+
"react": "^18.3.1",
14+
"react-router-dom": "^6.24.0",
15+
"zod": "^3.23.8"
16+
},
1217
"repository": {
1318
"type": "git",
1419
"url": "https://github.com/SFTtech/sftkit",

0 commit comments

Comments
 (0)