1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-10-30 07:36:02 -04:00
Files
jarv.is/.ncurc.cjs

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;