mirror of
https://github.com/toeverything/AFFiNE.git
synced 2025-10-26 11:37:06 +00:00
There can be more than Notion and Miro. AFFiNE(pronounced [ə‘fain]) is a next-gen knowledge base that brings planning, sorting and creating all together. Privacy first, open-source, customizable and ready to use.
appcrdteditorelectronknowledge-basemarkdownmironotesnotionnotion-alternativerustrust-langrust-languagetabletableviewwhiteboardwikiworkspace
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