Skip to content

Commit faefc59

Browse files
authored
Package Updates (#1831)
1 parent 765f46b commit faefc59

15 files changed

Lines changed: 6392 additions & 4086 deletions

File tree

packages/build/package-lock.json

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

packages/build/package.json

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@labkey/build",
3-
"version": "8.5.0",
3+
"version": "8.6.0",
44
"description": "LabKey client-side build assets",
55
"files": [
66
"webpack/"
@@ -12,17 +12,16 @@
1212
"author": "LabKey",
1313
"license": "Apache-2.0",
1414
"dependencies": {
15-
"@babel/core": "~7.26.10",
16-
"@babel/plugin-transform-class-properties": "~7.25.9",
17-
"@babel/plugin-transform-object-rest-spread": "~7.25.9",
18-
"@babel/preset-env": "~7.26.9",
19-
"@babel/preset-react": "~7.26.3",
20-
"@babel/preset-typescript": "~7.27.0",
21-
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.16",
15+
"@babel/core": "~7.28.0",
16+
"@babel/plugin-transform-class-properties": "~7.27.1",
17+
"@babel/plugin-transform-object-rest-spread": "~7.28.0",
18+
"@babel/preset-env": "~7.28.0",
19+
"@babel/preset-react": "~7.27.1",
20+
"@babel/preset-typescript": "~7.27.1",
21+
"@pmmmwh/react-refresh-webpack-plugin": "~0.6.1",
2222
"ajv": "~8.17.1",
2323
"babel-loader": "~10.0.0",
2424
"bootstrap-sass": "~3.4.3",
25-
"circular-dependency-plugin": "~5.2.2",
2625
"copy-webpack-plugin": "~13.0.0",
2726
"cross-env": "~7.0.3",
2827
"css-loader": "~7.1.2",
@@ -37,9 +36,9 @@
3736
"source-map-loader": "~5.0.0",
3837
"style-loader": "~4.0.0",
3938
"typescript": "~5.8.3",
40-
"webpack": "~5.99.6",
39+
"webpack": "~5.100.0",
4140
"webpack-bundle-analyzer": "~4.10.2",
4241
"webpack-cli": "~6.0.1",
43-
"webpack-dev-server": "~5.2.1"
42+
"webpack-dev-server": "~5.2.2"
4443
}
4544
}

packages/build/releaseNotes/build.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# @labkey/build
22

3+
### version 8.6.0
4+
*Released*: 11 July 2025
5+
- Package updates
6+
37
### version 8.5.0
48
*Released*: 21 April 2025
59
- Package updates

packages/build/webpack/constants.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const path = require('path');
88
const HtmlWebpackPlugin = require('html-webpack-plugin');
99
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
1010
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
11-
const CircularDependencyPlugin = require('circular-dependency-plugin');
1211
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
1312

1413
const cwd = path.resolve('./').split(path.sep);
@@ -388,12 +387,6 @@ module.exports = {
388387

389388
allPlugins.push(new ForkTsCheckerWebpackPlugin(TS_CHECKER_CONFIG));
390389

391-
allPlugins.push(new CircularDependencyPlugin({
392-
exclude: /node_modules/,
393-
include: /src/,
394-
failOnError: false, // TODO: When all App circular deps have been resolved this should be set to true
395-
}));
396-
397390
if (process.env.ANALYZE) {
398391
allPlugins.push(new BundleAnalyzerPlugin());
399392
}

packages/build/webpack/package.config.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ const path = require('path');
77
const CopyWebpackPlugin = require('copy-webpack-plugin');
88
const constants = require('./constants');
99
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
10-
const CircularDependencyPlugin = require('circular-dependency-plugin');
1110
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
1211

1312
const tsCheckerConfig = {
@@ -35,11 +34,6 @@ const plugins = [
3534
}
3635
]
3736
}),
38-
new CircularDependencyPlugin({
39-
exclude: /node_modules/,
40-
include: /src/,
41-
failOnError: true,
42-
}),
4337
];
4438
if (process.env.ANALYZE) {
4539
plugins.push(new BundleAnalyzerPlugin());

0 commit comments

Comments
 (0)