1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Plugins: Add support for context menu items on notebooks and tags

This commit is contained in:
Laurent Cozic
2020-12-11 13:28:59 +00:00
parent a1c08adb3e
commit 9f8e6a3060
83 changed files with 2600 additions and 503 deletions

View File

@ -13,7 +13,7 @@ function readManifest(manifestPath) {
}
function createPluginArchive(sourceDir, destPath) {
const distFiles = glob.sync(`${sourceDir}/**/*`)
const distFiles = glob.sync(`${sourceDir}/**/*`, { nodir: true })
.map(f => f.substr(sourceDir.length + 1));
if (!distFiles.length) {