diff --git a/package.json b/package.json index 1bc781d..b7058b0 100644 --- a/package.json +++ b/package.json @@ -76,16 +76,16 @@ "devDependencies": { "@babel/core": "^7.25.2", "@babel/plugin-transform-strict-mode": "^7.24.7", - "@eslint/js": "^9.11.0", - "@storybook/addon-actions": "^8.3.2", - "@storybook/addon-essentials": "^8.3.2", - "@storybook/addon-interactions": "^8.3.2", - "@storybook/addon-links": "^8.3.2", - "@storybook/blocks": "^8.3.2", - "@storybook/builder-webpack5": "^8.3.2", + "@eslint/js": "^9.11.1", + "@storybook/addon-actions": "^8.3.3", + "@storybook/addon-essentials": "^8.3.3", + "@storybook/addon-interactions": "^8.3.3", + "@storybook/addon-links": "^8.3.3", + "@storybook/blocks": "^8.3.3", + "@storybook/builder-webpack5": "^8.3.3", "@storybook/manager-webpack5": "^6.5.16", - "@storybook/react": "^8.3.2", - "@storybook/react-webpack5": "^8.3.2", + "@storybook/react": "^8.3.3", + "@storybook/react-webpack5": "^8.3.3", "@storybook/testing-library": "^0.2.2", "@testing-library/react": "^16.0.1", "@types/circular-dependency-plugin": "^5.0.8", @@ -104,7 +104,7 @@ "css-minimizer-webpack-plugin": "^7.0.0", "css-module-typescript-loader": "^0.0.4", "duplicate-package-checker-webpack-plugin": "^3.0.0", - "eslint": "^9.11.0", + "eslint": "^9.11.1", "eslint-config-prettier": "^9.1.0", "eslint-plugin-jest": "^28.8.3", "eslint-plugin-jsx-a11y": "^6.10.0", @@ -127,7 +127,7 @@ "sass": "^1.79.3", "sass-loader": "^16.0.2", "script-ext-html-webpack-plugin": "^2.1.5", - "storybook": "^8.3.2", + "storybook": "^8.3.3", "style-loader": "^4.0.0", "stylelint": "^16.9.0", "stylelint-config-standard": "^36.0.1", @@ -140,7 +140,7 @@ "ts-node": "^10.9.2", "typescript": "^5.6.2", "typescript-coverage-report": "^1.0.0", - "typescript-eslint": "^8.6.0", + "typescript-eslint": "^8.7.0", "webpack": "^5.94.0", "webpack-bundle-analyzer": "^4.10.2", "webpack-cli": "^5.1.4", diff --git a/webpack/running-config.ts b/webpack/running-config.ts index 4e13ff7..e611666 100644 --- a/webpack/running-config.ts +++ b/webpack/running-config.ts @@ -42,7 +42,7 @@ const configFront: Configuration = { assetModuleFilename: isDevelopment ? "build-asset/[name]----[hash:6][ext][query]" : "build-asset/[hash:6][ext][query]", - chunkFilename: isDevelopment ? "[name].chunk.js" : "[name].[hash:6].chunk.js", + chunkFilename: isDevelopment ? "[name].chunk.js" : "[name].[fullhash:6].chunk.js", filename: isDevelopment ? "[name].js" : "index.js", path: path.join(cwd(), pathToDistribution), pathinfo: false, diff --git a/webpack/setting/plugins.ts b/webpack/setting/plugins.ts index 35ee274..327c619 100644 --- a/webpack/setting/plugins.ts +++ b/webpack/setting/plugins.ts @@ -59,7 +59,7 @@ const pluginList: Configuration["plugins"] = [ new ScriptExtHtmlWebpackPlugin({defaultAttribute: "defer"}), new MiniCssExtractPlugin({ // Options similar to the same options in webpackOptions.output, both options are optional - chunkFilename: isDevelopment ? "[id].css" : "[id].[hash:6].css", + chunkFilename: isDevelopment ? "[id].css" : "[id].[fullhash:6].css", filename: isDevelopment ? "[name].css" : "style.css", }), new HtmlWebpackPlugin({ @@ -88,7 +88,7 @@ const pluginBuildLibraryList: Configuration["plugins"] = [ // ignored new ScriptExtHtmlWebpackPlugin({defaultAttribute: 'defer'}), new MiniCssExtractPlugin({ // Options similar to the same options in webpackOptions.output, both options are optional - chunkFilename: isDevelopment ? "[id].css" : "[id].[hash:6].css", + chunkFilename: isDevelopment ? "[id].css" : "[id].[fullhash:6].css", filename: isDevelopment ? "[name].css" : "style.css", }), new ContextReplacementPlugin(/moment[/\\]locale$/u, /en|ru/u),