1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/packages/lib
2020-11-23 16:40:50 +00:00
..
commands Tools: Apply rule @typescript-eslint/type-annotation-spacing 2020-11-12 19:13:28 +00:00
components/shared Desktop: Add config screen to add, remove or enable, disable plugins 2020-11-19 12:34:49 +00:00
images
lib
locales
migrations
models All: Fix handling of new line escaping when using external edit 2020-11-23 16:25:57 +00:00
renderers
rnInjectedJs
services Desktop: Fixed resource watching on Windows 2020-11-23 16:38:29 +00:00
themes Tools: Apply rule @typescript-eslint/member-delimiter-style 2020-11-12 19:29:22 +00:00
vendor Tools: Replace Jasmine with Jest to run tests 2020-11-10 15:59:30 +00:00
.gitignore Desktop: Allow customising application layout 2020-11-13 17:09:28 +00:00
ArrayUtils.js
AsyncActionQueue.ts Tools: Apply rule @typescript-eslint/member-delimiter-style 2020-11-12 19:29:22 +00:00
BaseApplication.ts All: Refresh sidebar and notes when moving note outside of conflict folder 2020-11-19 16:21:24 +00:00
BaseModel.ts Tools: Apply rule @typescript-eslint/member-delimiter-style 2020-11-12 19:29:22 +00:00
BaseSyncTarget.js
Cache.js
ClipperServer.js
CssUtils.js
database-driver-node.js
database.js All: Added global logger 2020-11-19 15:25:02 +00:00
DropboxApi.js
envFromArgs.js
errorUtils.ts Tools: Apply rule @typescript-eslint/type-annotation-spacing 2020-11-12 19:13:28 +00:00
EventDispatcher.js
eventManager.ts Tools: Apply rule @typescript-eslint/type-annotation-spacing 2020-11-12 19:13:28 +00:00
file-api-driver-amazon-s3.js
file-api-driver-dropbox.js
file-api-driver-local.js
file-api-driver-memory.js
file-api-driver-onedrive.js
file-api-driver-webdav.js
file-api.js
folders-screen-utils.js
fs-driver-base.js
fs-driver-dummy.js
fs-driver-node.ts Tools: Apply rule @typescript-eslint/type-annotation-spacing 2020-11-12 19:13:28 +00:00
geolocation-node.js
HtmlToMd.js
htmlUtils.js
import-enex-html-gen.js
import-enex-md-gen.js
import-enex.js Desktop, Cli: Fixed importing certain ENEX files that contain invalid dates 2020-11-23 11:23:56 +00:00
InMemoryCache.ts Tools: Apply rule @typescript-eslint/member-delimiter-style 2020-11-12 19:29:22 +00:00
joplin-database.js
JoplinError.js
JoplinServerApi.ts Tools: Apply rule @typescript-eslint/member-delimiter-style 2020-11-12 19:29:22 +00:00
locale.ts Tools: Apply rule @typescript-eslint/member-delimiter-style 2020-11-12 19:29:22 +00:00
Logger.ts All: Added global logger 2020-11-19 15:25:02 +00:00
markdownUtils.ts Tools: Apply rule @typescript-eslint/member-delimiter-style 2020-11-12 19:29:22 +00:00
markJsUtils.js
markupLanguageUtils.ts Tools: Apply rule @typescript-eslint/type-annotation-spacing 2020-11-12 19:13:28 +00:00
mime-utils-types.js
mime-utils.js
ModelCache.js
net-utils.js
ntpDate.ts Tools: Apply rule @typescript-eslint/type-annotation-spacing 2020-11-12 19:13:28 +00:00
ObjectUtils.js
onedrive-api-node-utils.js
onedrive-api.js
package-lock.json Desktop: Upgrade to Electron 10 2020-11-19 21:01:19 +00:00
package.json Desktop: Upgrade to Electron 10 2020-11-19 21:01:19 +00:00
parameters.js
parseUri.js
path-utils.ts Tools: Apply rule @typescript-eslint/type-annotation-spacing 2020-11-12 19:13:28 +00:00
PoorManIntervals.ts Tools: Apply rule @typescript-eslint/member-delimiter-style 2020-11-12 19:29:22 +00:00
promise-utils.js
randomClipperPort.js
react-logger.js
README.md
reducer.ts All: Refresh sidebar and notes when moving note outside of conflict folder 2020-11-19 16:21:24 +00:00
registry.js
reserved-ids.js
resourceUtils.js
shim-init-node.js Desktop: Fixes #4098: Fix crash due to React when trying to upgrade sync target 2020-11-19 16:38:44 +00:00
shim.ts Desktop: Fixes #4098: Fix crash due to React when trying to upgrade sync target 2020-11-19 16:38:44 +00:00
string-utils-common.js
string-utils.js
Synchronizer.ts Tools: Apply rule @typescript-eslint/member-delimiter-style 2020-11-12 19:29:22 +00:00
SyncTargetAmazonS3.js
SyncTargetDropbox.js
SyncTargetFilesystem.js
SyncTargetMemory.js
SyncTargetNextcloud.js
SyncTargetOneDrive.js
SyncTargetOneDriveDev.js
SyncTargetRegistry.js
SyncTargetWebDAV.js
TaskQueue.js
TemplateUtils.js Desktop: add {{bowm}} and {{bows}} - Beginning Of Week (Monday/Sunday) (#4023) 2020-11-12 18:41:37 +00:00
theme.ts Tools: Apply rule @typescript-eslint/type-annotation-spacing 2020-11-12 19:13:28 +00:00
time.ts Tools: Apply rule @typescript-eslint/type-annotation-spacing 2020-11-12 19:13:28 +00:00
tsconfig.json Plugins: Add support for editor context menu 2020-11-14 00:02:17 +00:00
urlUtils.js
uuid.ts
versionInfo.ts Tools: Apply rule @typescript-eslint/type-annotation-spacing 2020-11-12 19:13:28 +00:00
WebDavApi.js
welcomeAssets.js
WelcomeUtils.js

@joplin/lib

Library shared between all applications.

  • It should not have dependencies to any other @joplin package to avoid dependency cycles.
  • Binary packages should be passed via dependency injection from the parent packages, for example like it is done in shim-init-node. This is because each app might need to compile the binary package in a specific way, so doing it from /lib would cause issues.
  • It should not include the react or react-native packages because React in particular breaks when there's more than one instance of it in node_modules. React is passed via dependency injections so that some hooks can be shared.