mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-23 18:50:06 +08:00
chore: do not update @ant-design/cssinjs (#48222)
Signed-off-by: afc163 <afc163@gmail.com>
This commit is contained in:
parent
3add1ed5b4
commit
7b63e68fd8
@ -11,7 +11,12 @@ module.exports = {
|
||||
packageManager: 'npm',
|
||||
dep: ['prod'], // check only prod dependencies
|
||||
// https://github.com/raineorshine/npm-check-updates#filter
|
||||
filter: (name) => check.some((prefix) => name.startsWith(prefix)),
|
||||
filter: (name) => {
|
||||
if (name === '@ant-design/cssinjs') {
|
||||
return false;
|
||||
}
|
||||
return check.some((prefix) => name.startsWith(prefix));
|
||||
},
|
||||
// https://github.com/raineorshine/npm-check-updates#target
|
||||
target: (name, semver) => {
|
||||
const { operator } = semver[0] ?? {};
|
||||
|
Loading…
Reference in New Issue
Block a user