mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-11-23 02:53:28 +03:00
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
|
function resolve(pkg) {
|
||
|
if (pkg.dependencies && pkg.dependencies['@toeverything/pathfinder-logger']) {
|
||
|
pkg.dependencies['@toeverything/pathfinder-logger'] = 'latest';
|
||
|
}
|
||
|
|
||
|
return pkg;
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
resolve,
|
||
|
};
|