Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,405 changes: 1,501 additions & 904 deletions packages/build/package-lock.json

Large diffs are not rendered by default.

21 changes: 10 additions & 11 deletions packages/build/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@labkey/build",
"version": "8.5.0",
"version": "8.6.0",
"description": "LabKey client-side build assets",
"files": [
"webpack/"
Expand All @@ -12,17 +12,16 @@
"author": "LabKey",
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "~7.26.10",
"@babel/plugin-transform-class-properties": "~7.25.9",
"@babel/plugin-transform-object-rest-spread": "~7.25.9",
"@babel/preset-env": "~7.26.9",
"@babel/preset-react": "~7.26.3",
"@babel/preset-typescript": "~7.27.0",
"@pmmmwh/react-refresh-webpack-plugin": "~0.5.16",
"@babel/core": "~7.28.0",
"@babel/plugin-transform-class-properties": "~7.27.1",
"@babel/plugin-transform-object-rest-spread": "~7.28.0",
"@babel/preset-env": "~7.28.0",
"@babel/preset-react": "~7.27.1",
"@babel/preset-typescript": "~7.27.1",
"@pmmmwh/react-refresh-webpack-plugin": "~0.6.1",
"ajv": "~8.17.1",
"babel-loader": "~10.0.0",
"bootstrap-sass": "~3.4.3",
"circular-dependency-plugin": "~5.2.2",
"copy-webpack-plugin": "~13.0.0",
"cross-env": "~7.0.3",
"css-loader": "~7.1.2",
Expand All @@ -37,9 +36,9 @@
"source-map-loader": "~5.0.0",
"style-loader": "~4.0.0",
"typescript": "~5.8.3",
"webpack": "~5.99.6",
"webpack": "~5.100.0",
"webpack-bundle-analyzer": "~4.10.2",
"webpack-cli": "~6.0.1",
"webpack-dev-server": "~5.2.1"
"webpack-dev-server": "~5.2.2"
}
}
4 changes: 4 additions & 0 deletions packages/build/releaseNotes/build.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# @labkey/build

### version 8.6.0
*Released*: 11 July 2025
- Package updates

### version 8.5.0
*Released*: 21 April 2025
- Package updates
Expand Down
7 changes: 0 additions & 7 deletions packages/build/webpack/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const CircularDependencyPlugin = require('circular-dependency-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;

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

allPlugins.push(new ForkTsCheckerWebpackPlugin(TS_CHECKER_CONFIG));

allPlugins.push(new CircularDependencyPlugin({
exclude: /node_modules/,
include: /src/,
failOnError: false, // TODO: When all App circular deps have been resolved this should be set to true
}));

if (process.env.ANALYZE) {
allPlugins.push(new BundleAnalyzerPlugin());
}
Expand Down
6 changes: 0 additions & 6 deletions packages/build/webpack/package.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ const path = require('path');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const constants = require('./constants');
const ForkTsCheckerWebpackPlugin = require("fork-ts-checker-webpack-plugin");
const CircularDependencyPlugin = require('circular-dependency-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;

const tsCheckerConfig = {
Expand Down Expand Up @@ -35,11 +34,6 @@ const plugins = [
}
]
}),
new CircularDependencyPlugin({
exclude: /node_modules/,
include: /src/,
failOnError: true,
}),
];
if (process.env.ANALYZE) {
plugins.push(new BundleAnalyzerPlugin());
Expand Down
Loading