mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-10-30 07:26:00 -04:00
16 lines
297 B
JavaScript
16 lines
297 B
JavaScript
/** @type {import("npm-check-updates").RunOptions} */
|
|
const config = {
|
|
deep: true,
|
|
// workspaces: true,
|
|
// root: true,
|
|
target: (dependencyName) => {
|
|
if (/next$|(^@next\/.*$)/.test(dependencyName)) {
|
|
return "@canary";
|
|
}
|
|
|
|
return "latest";
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|