mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 16:51:34 +03:00
There can be more than Notion and Miro. AFFiNE is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use.
affineblock-editorcollaborativeeditorknowledge-basemiromiro-alternativenotionnotion-alternativeprivacy-firstrustsemanticstarred-repostarred-toeverything-repoyjs
88c8a408b5
feat: module resolve fix: logger repository fix: module resolve chore: add workflow for module resolve chore: update workflow env chore: update workflow install chore: update workflow env for npm token chore: test docker chore: update workflow env |
||
---|---|---|
.github | ||
.vscode | ||
packages | ||
scripts/module-resolve | ||
.eslintignore | ||
.eslintrc.js | ||
.gitignore | ||
.npmrc | ||
.pnpmfile.cjs | ||
.prettierrc | ||
package.json | ||
pnpm-lock.yaml | ||
pnpm-workspace.yaml | ||
README.md |
Pathfinder
Build
Replace Modules
You can create module-resolve.js
in project root dir to replace some package to better implements. Example:
function resolve(pkg) {
if (pkg.dependencies && pkg.dependencies['@toeverything/track']) {
pkg.dependencies['@toeverything/track'] = '^0.0.1';
}
return pkg;
}
module.exports = {
resolve,
};
After modify/create this file, please delete the node_modules
, then run pnpm install
again