-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
107 lines (93 loc) · 3.64 KB
/
build.js
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
import fss from "node:fs";
import fs from "node:fs/promises";
import cp from "node:child_process";
import {chalk, esbuild, is_source, log, Path, util} from 'builder';
export default {
async "build:plugin"(config) {
if (!await util.has_changed({
glob: path => is_source(path),
dependents: [config.out.join("main.js")]
}))
return log.verbose("Skipping Rebuild");
await esbuild.build({
entryPoints: ["src/main.ts"],
bundle: true,
sourcemap: true,
platform: 'browser',
format: 'cjs',
loader: {
".ttf": "copy",
".wasm": "binary"
},
external: ['electron', 'obsidian'],
outdir: config.out.path
});
},
async "build:unit"(config) {
await esbuild.build({
entryPoints: ["unitConverter/unit.ts"],
bundle: true,
sourcemap: true,
platform: 'node',
format: 'esm',
outdir: config.out.path
});
},
async "build:package.json"(config) {
if (!await util.has_changed({
glob: path => is_source(path),
dependents: [config.out.join("package.json")]
}))
return log.verbose("Skipping Rebuild");
const jq = cp.spawn('jq', ['-r', '. * .deploy * {deploy:null} | with_entries(select(.value |. != null))']);
fss.createReadStream(config.root.join("package.json").path)
.pipe(jq.stdin);
jq.stdout.pipe(fss.createWriteStream(config.out.join("package.json").path));
await new Promise((ok, err) => jq.on("exit", code => code === 0 ? ok() : err(code)));
},
async "build:manifest.json"(config) {
if (!await util.has_changed({
glob: path => is_source(path),
dependents: [config.out.join("manifest.json")]
}))
return log.verbose("Skipping Rebuild");
const jq = cp.spawn('jq', ['-r', '.']);
fss.createReadStream(config.root.join("manifest.json").path)
.pipe(jq.stdin);
jq.stdout.pipe(fss.createWriteStream(config.out.join("manifest.json").path));
await new Promise((ok, err) => jq.on("exit", code => code === 0 ? ok() : err(code)));
},
async "build:style.css"(config) {
if (!await util.has_changed({
glob: path => path.path.endsWith(".css"),
dependents: [config.out.join("styles.css")]
}))
return log.verbose("Skipping Rebuild");
await esbuild.build({
entryPoints: ["styles.css"],
bundle: true,
sourcemap: true,
loader: {
".ttf": "copy"
},
outdir: config.out.path
});
},
async "phony:install"(config) {
const pkg = await fs.readFile(config.root.join("package.json").path, 'utf8')
.then(pkg => JSON.parse(pkg).name);
const install = new Path(process.env['vault_dir']).join(".obsidian/plugins").join(pkg);
await fs.mkdir(install.path, {recursive: true});
for await (const file of config.out.readdir())
if (await file.isFile())
await fs.copyFile(file.path, file.replaceBase(config.out, install).path);
else if (await file.isDir())
await fs.mkdir(file.replaceBase(config.out, install).path, {recursive: true});
},
async "phony:all"(config) {
for (const [key, comp] of Object.entries(config.components))
if (key.startsWith("build:"))
await comp(config)
.then(_ => log.info(` ${chalk.grey(key)}: Done`));
}
}