-
Notifications
You must be signed in to change notification settings - Fork 877
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
release 0.28.0 #617
release 0.28.0 #617
Conversation
Bumps [webpack](https://github.com/webpack/webpack) from 5.76.0 to 5.97.1. - [Release notes](https://github.com/webpack/webpack/releases) - [Commits](webpack/webpack@v5.76.0...v5.97.1) --- updated-dependencies: - dependency-name: webpack dependency-type: direct:development ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
import HtmlWebpackPlugin from 'html-webpack-plugin'; | ||
import * as packUtils from './scripts/webpack.js'; | ||
|
||
const commitId = cp.execSync('git rev-parse HEAD').toString().trim(); |
Check warning
Code scanning / Eslint-9 (reported by Codacy)
Definition for rule '@typescript-eslint/no-require-imports' was not found. Warning
import * as packUtils from './scripts/webpack.js'; | ||
|
||
const commitId = cp.execSync('git rev-parse HEAD').toString().trim(); | ||
const staticDir = `static-${commitId.padStart(7, '0').slice(0, 7)}`; |
Check warning
Code scanning / Jshint (reported by Codacy)
'require' is not defined. Warning
import * as packUtils from './scripts/webpack.js'; | ||
|
||
const commitId = cp.execSync('git rev-parse HEAD').toString().trim(); | ||
const staticDir = `static-${commitId.padStart(7, '0').slice(0, 7)}`; |
Check notice
Code scanning / Jshint (reported by Codacy)
Prohibits the use of __iterator__ property due to compatibility issues Note
const skipMinified = { info: { minimized: true } }; | ||
const skipNodeModules = { globOptions: { dot: true, ignore: ['**/node_modules/**'] } }; |
Check warning
Code scanning / Jshint (reported by Codacy)
'module' is not defined. Warning
const skipMinified = { info: { minimized: true } }; | ||
const skipNodeModules = { globOptions: { dot: true, ignore: ['**/node_modules/**'] } }; | ||
const fileLoaderOptions = { outputPath: staticDir, name: '[name].[ext]' }; |
Check warning
Code scanning / Jshint (reported by Codacy)
'__dirname' is not defined. Warning
No description provided.