-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathinstall-plugin.mjs
45 lines (36 loc) · 1.57 KB
/
install-plugin.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import fs from "fs";
import path from "path";
import manifest from "./manifest.json" assert { type: "json" };
import https from "https";
const destinationFolder = process.argv[2];
if (!destinationFolder) {
console.error("Please provide path to Obsidian Vault");
process.exit(1);
}
const pluginsFolder = path.join(destinationFolder, ".obsidian", "plugins");
const thisPluginFolder = path.join(pluginsFolder, manifest.id);
if (!fs.existsSync(thisPluginFolder)) {
fs.mkdirSync(thisPluginFolder, { recursive: true });
}
const filesToCopy = ["main.js", "styles.css", "manifest.json"];
filesToCopy.forEach((file) => {
fs.copyFileSync(file, path.join(thisPluginFolder, file));
});
// install hot-reload plugin to automatically reload this plugin
const hotReloadFilePath = path.join(thisPluginFolder, ".hotreload");
if (!fs.existsSync(hotReloadFilePath)) {
fs.writeFileSync(hotReloadFilePath, "");
}
const hotReloadFolder = path.join(pluginsFolder, "hot-reload");
if (!fs.existsSync(hotReloadFolder)) {
fs.mkdirSync(hotReloadFolder, { recursive: true });
const hotReloadMain = "https://raw.githubusercontent.com/pjeby/hot-reload/master/main.js";
const hotReloadManifest = "https://raw.githubusercontent.com/pjeby/hot-reload/master/manifest.json";
https.get(hotReloadMain, function (response) {
response.pipe(fs.createWriteStream(path.join(hotReloadFolder, "main.js")));
});
https.get(hotReloadManifest, function (response) {
response.pipe(fs.createWriteStream(path.join(hotReloadFolder, "manifest.json")));
});
}
console.log(`${new Date().toLocaleTimeString()} Plugin installed successfully!`);