
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@ysfe/polyfill-webpack-plugin
Advanced tools
解决 vue-cli5 忽略 node_modules 编译导致的如:globalThis 未解析问题(vivo 低版本)
以下结合 vue 应用场景, 整理使用文档
安装: 执行 yarn add @ysfe/polyfill-webpack-plugin --dev 安装插件
使用:
vue.config.js 中, 引用插件. const PolyfillWebpackPlugin = require('@ysfe/polyfill-webpack-plugin').default
// 通过 configureWebpack 配置
module.exports = {
configureWebpack: {
plugins: [
new PolyfillWebpackPlugin(),
// other plugins ...
]
}
}
// or 通过 chainWebpack 配置
module.exports = {
chainWebpack: (config) => {
// add plugin
config
.plugin('PolyfillWebpackPlugin')
.use(PolyfillWebpackPlugin)
}
}
FAQs
解决 vue-cli5 忽略node_modules 编译导致的如:globalThis 未解析问题(vivo低版本)
We found that @ysfe/polyfill-webpack-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.