muon-ui 0.2.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/dist/cli.cjs +271 -11
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/dist/native/linux64/muon-bootstrap +0 -0
- package/dist/native/linux64/muon-prepare +0 -0
- package/dist/native/linuxarm/muon-bootstrap +0 -0
- package/dist/native/linuxarm/muon-prepare +0 -0
- package/dist/native/linuxarm64/muon-bootstrap +0 -0
- package/dist/native/linuxarm64/muon-prepare +0 -0
- package/dist/native/windows32/muon-bootstrap.exe +0 -0
- package/dist/native/windows32/muon-prepare.exe +0 -0
- package/dist/native/windows64/muon-bootstrap.exe +0 -0
- package/dist/native/windows64/muon-prepare.exe +0 -0
- package/dist/runtime/linux64/LICENSE_muon +97 -0
- package/dist/runtime/linux64/libmuon-ui.so +0 -0
- package/dist/runtime/linux64/muon-core +0 -0
- package/dist/runtime/linuxarm/LICENSE_muon +97 -0
- package/dist/runtime/linuxarm/libmuon-ui.so +0 -0
- package/dist/runtime/linuxarm/muon-core +0 -0
- package/dist/runtime/linuxarm64/LICENSE_muon +97 -0
- package/dist/runtime/linuxarm64/libmuon-ui.so +0 -0
- package/dist/runtime/linuxarm64/muon-core +0 -0
- package/dist/runtime/windows32/LICENSE_muon +97 -0
- package/dist/runtime/windows32/libcardio.dll +0 -0
- package/dist/runtime/windows32/libgcc_s_dw2-1.dll +0 -0
- package/dist/runtime/windows32/libmuon-ui.dll +0 -0
- package/dist/runtime/windows32/libstdc++-6.dll +0 -0
- package/dist/runtime/windows32/muon-core.exe +0 -0
- package/dist/runtime/windows64/LICENSE_muon +97 -0
- package/dist/runtime/windows64/libcardio.dll +0 -0
- package/dist/runtime/windows64/libgcc_s_seh-1.dll +0 -0
- package/dist/runtime/windows64/libmuon-ui.dll +0 -0
- package/dist/runtime/windows64/libstdc++-6.dll +0 -0
- package/dist/runtime/windows64/muon-core.exe +0 -0
- package/dist/{build-BxDRaTmF.cjs → vite-options-C4evRLpv.cjs} +395 -29
- package/dist/vite-options-C4evRLpv.cjs.map +1 -0
- package/dist/vite.cjs +9 -230
- package/dist/vite.cjs.map +1 -1
- package/dist/vite.mjs +111 -36
- package/dist/vite.mjs.map +1 -1
- package/images/vscode.png +0 -0
- package/muon.d.ts +27 -0
- package/package.json +9 -8
- package/vite.d.ts +18 -2
- package/dist/build-BxDRaTmF.cjs.map +0 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ A multi-platform GUI application framework that uses CEF as its backend.
|
|
|
4
4
|
|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
[](https://www.repostatus.org/#wip)
|
|
8
8
|
[](https://opensource.org/licenses/MIT)
|
|
9
9
|
|
|
10
10
|
---
|
|
@@ -59,6 +59,7 @@ you can develop modern local GUI applications using the web-based technology eco
|
|
|
59
59
|
- The browser responsible for rendering is CEF (Chromium Embedded Framework).
|
|
60
60
|
This means that, from the perspective of your web application, it is virtually equivalent to using Chromium or Chrome.
|
|
61
61
|
- Supports Vite plugins (optional). With support for Vite’s HMR, you can update previews in real time during development.
|
|
62
|
+
- Provides `muon dev` for launching local development assets directly without starting an HTTP server.
|
|
62
63
|
- You can use Chromium DevTools. Furthermore, because it supports CDP (Chromium DevTools Protocol), you can perform remote debugging from an external source.
|
|
63
64
|
- You can display multiple browser windows. Browser windows can also be organized into a parent-child hierarchy.
|
|
64
65
|
- It features a plugin system. Additionally, plugin functionality can be restricted using a whitelist filter.
|
|
@@ -71,7 +72,7 @@ you can develop modern local GUI applications using the web-based technology eco
|
|
|
71
72
|
- Windows: i686, amd64
|
|
72
73
|
- Build Environment
|
|
73
74
|
- Node.js 20 or later
|
|
74
|
-
- Vite
|
|
75
|
+
- Vite 5 or later (optional)
|
|
75
76
|
|
|
76
77
|
---
|
|
77
78
|
|
package/dist/cli.cjs
CHANGED
|
@@ -1,18 +1,252 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
/*!
|
|
3
3
|
* name: muon-ui
|
|
4
|
-
* version: 0.
|
|
4
|
+
* version: 0.4.0
|
|
5
5
|
* description: A multi-platform GUI application framework that uses CEF as its backend
|
|
6
6
|
* author: Kouji Matsui (@kekyo@mi.kekyo.net)
|
|
7
7
|
* license: MIT
|
|
8
8
|
* repository.url: https://github.com/kekyo/muon-ui.git
|
|
9
|
-
* git.commit.hash:
|
|
9
|
+
* git.commit.hash: 44d549142c8cbfa13cb29d10be2568652a68bf50
|
|
10
10
|
*/
|
|
11
|
-
const
|
|
11
|
+
const require_vite_options = require("./vite-options-C4evRLpv.cjs");
|
|
12
12
|
let commander = require("commander");
|
|
13
|
+
let node_child_process = require("node:child_process");
|
|
14
|
+
let node_fs = require("node:fs");
|
|
15
|
+
let node_fs_promises = require("node:fs/promises");
|
|
16
|
+
let node_path = require("node:path");
|
|
17
|
+
//#region src/dev.ts
|
|
18
|
+
var import_dist = require_vite_options.require_dist();
|
|
19
|
+
var muonRecycleExitCode = 88;
|
|
20
|
+
var defaultProjectConfigFileNames = [
|
|
21
|
+
"muon.json5",
|
|
22
|
+
"muon.jsonc",
|
|
23
|
+
"muon.json"
|
|
24
|
+
];
|
|
25
|
+
var resolveFromRoot = (root, path) => (0, node_path.isAbsolute)(path) ? path : (0, node_path.resolve)(root, path);
|
|
26
|
+
var isJsonObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value);
|
|
27
|
+
var getErrorMessage = (error) => error instanceof Error ? error.message : String(error);
|
|
28
|
+
var fileExists = async (path) => {
|
|
29
|
+
try {
|
|
30
|
+
return (await (0, node_fs_promises.stat)(path)).isFile();
|
|
31
|
+
} catch {
|
|
32
|
+
return false;
|
|
33
|
+
}
|
|
34
|
+
};
|
|
35
|
+
var directoryExists = async (path) => {
|
|
36
|
+
try {
|
|
37
|
+
return (await (0, node_fs_promises.stat)(path)).isDirectory();
|
|
38
|
+
} catch {
|
|
39
|
+
return false;
|
|
40
|
+
}
|
|
41
|
+
};
|
|
42
|
+
var isMissingVitePackageError = (error) => {
|
|
43
|
+
const candidate = error;
|
|
44
|
+
return candidate.code === "ERR_MODULE_NOT_FOUND" && typeof candidate.message === "string" && candidate.message.includes("vite");
|
|
45
|
+
};
|
|
46
|
+
var loadViteMuonOptions = async (cwd) => {
|
|
47
|
+
let vite;
|
|
48
|
+
try {
|
|
49
|
+
vite = await import("vite");
|
|
50
|
+
} catch (error) {
|
|
51
|
+
if (isMissingVitePackageError(error)) return {
|
|
52
|
+
root: (0, node_path.resolve)(cwd),
|
|
53
|
+
pluginOptions: void 0
|
|
54
|
+
};
|
|
55
|
+
throw error;
|
|
56
|
+
}
|
|
57
|
+
const loaded = await vite.loadConfigFromFile({
|
|
58
|
+
command: "serve",
|
|
59
|
+
mode: "development",
|
|
60
|
+
isPreview: false,
|
|
61
|
+
isSsrBuild: false
|
|
62
|
+
}, void 0, cwd, "silent");
|
|
63
|
+
if (loaded === null) return {
|
|
64
|
+
root: (0, node_path.resolve)(cwd),
|
|
65
|
+
pluginOptions: void 0
|
|
66
|
+
};
|
|
67
|
+
const config = loaded.config;
|
|
68
|
+
const root = typeof config.root === "string" ? (0, node_path.resolve)(cwd, config.root) : (0, node_path.resolve)(cwd);
|
|
69
|
+
const muonPlugins = (await require_vite_options.flattenVitePluginOptions(config.plugins)).map((plugin) => require_vite_options.getMuonVitePluginOptions(plugin)).filter((pluginOptions) => pluginOptions !== void 0);
|
|
70
|
+
if (muonPlugins.length > 1) throw new Error("Multiple muon() plugin definitions were found in vite.config.*.");
|
|
71
|
+
return {
|
|
72
|
+
root,
|
|
73
|
+
pluginOptions: muonPlugins[0]
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
var resolveProjectConfigPath = async (root, configPath) => {
|
|
77
|
+
if (configPath !== void 0) {
|
|
78
|
+
const resolvedPath = resolveFromRoot(root, configPath);
|
|
79
|
+
if (!await fileExists(resolvedPath)) throw new Error(`Muon config file does not exist: ${resolvedPath}`);
|
|
80
|
+
return resolvedPath;
|
|
81
|
+
}
|
|
82
|
+
for (const fileName of defaultProjectConfigFileNames) {
|
|
83
|
+
const candidatePath = (0, node_path.join)(root, fileName);
|
|
84
|
+
if (await fileExists(candidatePath)) return candidatePath;
|
|
85
|
+
}
|
|
86
|
+
};
|
|
87
|
+
var readJsonObjectFile = async (filePath, label) => {
|
|
88
|
+
let content;
|
|
89
|
+
try {
|
|
90
|
+
content = await (0, node_fs_promises.readFile)(filePath, "utf8");
|
|
91
|
+
} catch (error) {
|
|
92
|
+
throw new Error(`${label} could not be read: ${filePath}: ${getErrorMessage(error)}`);
|
|
93
|
+
}
|
|
94
|
+
let parsed;
|
|
95
|
+
try {
|
|
96
|
+
parsed = (0, import_dist.parse)(content);
|
|
97
|
+
} catch (error) {
|
|
98
|
+
throw new Error(`${label} could not be parsed: ${filePath}: ${getErrorMessage(error)}`);
|
|
99
|
+
}
|
|
100
|
+
if (!isJsonObject(parsed)) throw new Error(`${label} must contain a JSON object: ${filePath}`);
|
|
101
|
+
return parsed;
|
|
102
|
+
};
|
|
103
|
+
var resolveProjectConfig = async (root, configPath) => {
|
|
104
|
+
const resolvedConfigPath = await resolveProjectConfigPath(root, configPath);
|
|
105
|
+
if (resolvedConfigPath === void 0) return {
|
|
106
|
+
configPath: void 0,
|
|
107
|
+
config: void 0
|
|
108
|
+
};
|
|
109
|
+
return {
|
|
110
|
+
configPath: resolvedConfigPath,
|
|
111
|
+
config: await readJsonObjectFile(resolvedConfigPath, "muon config")
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
var readConfigAssetSourcePath = (config) => {
|
|
115
|
+
if (config === void 0) return;
|
|
116
|
+
const asset = config.asset;
|
|
117
|
+
if (asset === void 0) return;
|
|
118
|
+
if (!isJsonObject(asset)) throw new Error("muon config asset must be an object when present.");
|
|
119
|
+
const sourcePath = asset.sourcePath;
|
|
120
|
+
if (sourcePath === void 0) return;
|
|
121
|
+
if (typeof sourcePath !== "string") throw new Error("muon config asset.sourcePath must be a string.");
|
|
122
|
+
if (sourcePath.trim().length === 0) throw new Error("muon config asset.sourcePath must not be empty.");
|
|
123
|
+
return sourcePath;
|
|
124
|
+
};
|
|
125
|
+
var assertDevelopmentAssetDirectory = async (assetSourcePath) => {
|
|
126
|
+
if (await directoryExists(assetSourcePath)) return;
|
|
127
|
+
try {
|
|
128
|
+
await (0, node_fs_promises.access)(assetSourcePath, node_fs.constants.F_OK);
|
|
129
|
+
} catch {
|
|
130
|
+
throw new Error(`Muon dev asset source does not exist: ${assetSourcePath}`);
|
|
131
|
+
}
|
|
132
|
+
throw new Error(`Muon dev asset source must be a directory: ${assetSourcePath}`);
|
|
133
|
+
};
|
|
134
|
+
var resolveAssetSource = async (root, assetSourcePath, projectConfig) => {
|
|
135
|
+
const configuredAssetSourcePath = readConfigAssetSourcePath(projectConfig.config);
|
|
136
|
+
if (assetSourcePath !== void 0) {
|
|
137
|
+
const resolvedPath = resolveFromRoot(root, assetSourcePath);
|
|
138
|
+
await assertDevelopmentAssetDirectory(resolvedPath);
|
|
139
|
+
return {
|
|
140
|
+
assetSourcePath: resolvedPath,
|
|
141
|
+
overrideAssetSourcePath: resolvedPath
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
if (configuredAssetSourcePath !== void 0 && projectConfig.configPath !== void 0) return {
|
|
145
|
+
assetSourcePath: (0, node_path.resolve)((0, node_path.dirname)(projectConfig.configPath), configuredAssetSourcePath),
|
|
146
|
+
overrideAssetSourcePath: void 0
|
|
147
|
+
};
|
|
148
|
+
const defaultAssetSourcePath = (0, node_path.resolve)(root, "assets");
|
|
149
|
+
await assertDevelopmentAssetDirectory(defaultAssetSourcePath);
|
|
150
|
+
return {
|
|
151
|
+
assetSourcePath: defaultAssetSourcePath,
|
|
152
|
+
overrideAssetSourcePath: defaultAssetSourcePath
|
|
153
|
+
};
|
|
154
|
+
};
|
|
155
|
+
var createMuonDevOverrideConfig = (assetSourcePath, enableDebugger) => ({
|
|
156
|
+
...assetSourcePath === void 0 ? {} : { asset: { sourcePath: assetSourcePath } },
|
|
157
|
+
...enableDebugger ? {
|
|
158
|
+
cdp: { enable: true },
|
|
159
|
+
browser: { keybind: {
|
|
160
|
+
devtools: "f12",
|
|
161
|
+
recycle: "ctrl+f12"
|
|
162
|
+
} }
|
|
163
|
+
} : {}
|
|
164
|
+
});
|
|
165
|
+
var writeMuonDevOverrideConfig = async (overrideConfigPath, overrideConfig) => {
|
|
166
|
+
await (0, node_fs_promises.mkdir)((0, node_path.dirname)(overrideConfigPath), { recursive: true });
|
|
167
|
+
await (0, node_fs_promises.writeFile)(overrideConfigPath, `${JSON.stringify(overrideConfig, null, 2)}\n`);
|
|
168
|
+
};
|
|
169
|
+
var runMuonExecutable = async (muonExecutablePath, configPaths, environment) => {
|
|
170
|
+
const args = configPaths.flatMap((configPath) => ["-c", configPath]);
|
|
171
|
+
let exitCode = 0;
|
|
172
|
+
do {
|
|
173
|
+
const child = (0, node_child_process.spawn)(muonExecutablePath, args, {
|
|
174
|
+
cwd: (0, node_path.dirname)(muonExecutablePath),
|
|
175
|
+
env: environment,
|
|
176
|
+
stdio: [
|
|
177
|
+
"ignore",
|
|
178
|
+
"inherit",
|
|
179
|
+
"inherit"
|
|
180
|
+
]
|
|
181
|
+
});
|
|
182
|
+
exitCode = await new Promise((resolvePromise, reject) => {
|
|
183
|
+
child.once("error", reject);
|
|
184
|
+
child.once("close", (code) => {
|
|
185
|
+
resolvePromise(code ?? 1);
|
|
186
|
+
});
|
|
187
|
+
});
|
|
188
|
+
} while (exitCode === muonRecycleExitCode);
|
|
189
|
+
return exitCode;
|
|
190
|
+
};
|
|
191
|
+
/**
|
|
192
|
+
* Launches Muon directly against local development assets.
|
|
193
|
+
*
|
|
194
|
+
* @param options Development startup options.
|
|
195
|
+
* @returns Development startup result after the Muon process exits.
|
|
196
|
+
*/
|
|
197
|
+
var runMuonDev = async (options = {}) => {
|
|
198
|
+
const loadedViteOptions = await loadViteMuonOptions((0, node_path.resolve)(options.root ?? process.cwd()));
|
|
199
|
+
const root = loadedViteOptions.root;
|
|
200
|
+
const pluginOptions = loadedViteOptions.pluginOptions;
|
|
201
|
+
const platform = options.platform ?? process.platform;
|
|
202
|
+
const architecture = options.architecture ?? process.arch;
|
|
203
|
+
const environment = options.environment ?? process.env;
|
|
204
|
+
const target = require_vite_options.getDefaultMuonPrepareTarget(platform, architecture);
|
|
205
|
+
const muonPath = require_vite_options.resolveMuonRuntimePath({
|
|
206
|
+
root,
|
|
207
|
+
target,
|
|
208
|
+
muonPath: options.muonPath ?? pluginOptions?.muonPath
|
|
209
|
+
});
|
|
210
|
+
const cefPath = options.cefPath !== void 0 ? resolveFromRoot(root, options.cefPath) : pluginOptions?.cefPath === void 0 ? void 0 : resolveFromRoot(root, pluginOptions.cefPath);
|
|
211
|
+
const stagePath = options.stagePath !== void 0 ? resolveFromRoot(root, options.stagePath) : pluginOptions?.stagePath === void 0 ? (0, node_path.resolve)(root, ".muon", target) : resolveFromRoot(root, pluginOptions.stagePath);
|
|
212
|
+
const enableDebugger = options.enableDebugger ?? pluginOptions?.enableDebugger ?? true;
|
|
213
|
+
const projectConfig = await resolveProjectConfig(root, options.configPath);
|
|
214
|
+
const asset = await resolveAssetSource(root, options.assetSourcePath, projectConfig);
|
|
215
|
+
const overrideConfigPath = (0, node_path.join)(root, ".muon", "dev", "muon.dev.json");
|
|
216
|
+
await require_vite_options.ensureMuonGitignoreEntry(root);
|
|
217
|
+
const preparedRuntime = await require_vite_options.runMuonPrepare({
|
|
218
|
+
muonPath,
|
|
219
|
+
cefPath,
|
|
220
|
+
stageDir: stagePath,
|
|
221
|
+
target,
|
|
222
|
+
cacheDir: environment.MUON_CACHE_DIR,
|
|
223
|
+
force: false,
|
|
224
|
+
quiet: options.quietPrepare === true,
|
|
225
|
+
prepareExecutablePath: void 0,
|
|
226
|
+
environment,
|
|
227
|
+
cwd: root
|
|
228
|
+
});
|
|
229
|
+
if (preparedRuntime.stagePath === void 0) throw new Error("muon-prepare did not return a staged runtime path.");
|
|
230
|
+
await writeMuonDevOverrideConfig(overrideConfigPath, createMuonDevOverrideConfig(asset.overrideAssetSourcePath, enableDebugger));
|
|
231
|
+
const muonExecutablePath = require_vite_options.getMuonExecutablePath(preparedRuntime.stagePath, platform);
|
|
232
|
+
const exitCode = await runMuonExecutable(muonExecutablePath, [...projectConfig.configPath === void 0 ? [] : [projectConfig.configPath], overrideConfigPath], environment);
|
|
233
|
+
return {
|
|
234
|
+
root,
|
|
235
|
+
target,
|
|
236
|
+
muonPath: preparedRuntime.muonPath,
|
|
237
|
+
cefPath: preparedRuntime.cefPath,
|
|
238
|
+
stagePath: preparedRuntime.stagePath,
|
|
239
|
+
muonExecutablePath,
|
|
240
|
+
...projectConfig.configPath === void 0 ? {} : { projectConfigPath: projectConfig.configPath },
|
|
241
|
+
overrideConfigPath,
|
|
242
|
+
assetSourcePath: asset.assetSourcePath,
|
|
243
|
+
exitCode
|
|
244
|
+
};
|
|
245
|
+
};
|
|
246
|
+
//#endregion
|
|
13
247
|
//#region src/generated/packageMetadata.ts
|
|
14
|
-
var version = "0.
|
|
15
|
-
var git_commit_hash = "
|
|
248
|
+
var version = "0.4.0";
|
|
249
|
+
var git_commit_hash = "44d549142c8cbfa13cb29d10be2568652a68bf50";
|
|
16
250
|
//#endregion
|
|
17
251
|
//#region src/cli.ts
|
|
18
252
|
var readTargetValues = (value) => {
|
|
@@ -40,16 +274,16 @@ var runBuildCommand = async (commandOptions) => {
|
|
|
40
274
|
if (commandOptions.config !== void 0) buildOptions.configPath = commandOptions.config;
|
|
41
275
|
if (commandOptions.outDir !== void 0) buildOptions.outputRoot = commandOptions.outDir;
|
|
42
276
|
if (commandOptions.name !== void 0) buildOptions.appName = commandOptions.name;
|
|
43
|
-
const result = await
|
|
277
|
+
const result = await require_vite_options.buildMuonApp(buildOptions);
|
|
44
278
|
if (commandOptions.json === true) console.log(JSON.stringify(result, null, 2));
|
|
45
279
|
else for (const target of result.targets) console.log(target.outputPath);
|
|
46
280
|
};
|
|
47
281
|
var runPrepareCommand = async (commandOptions) => {
|
|
48
|
-
const result = await
|
|
282
|
+
const result = await require_vite_options.runMuonPrepare({
|
|
49
283
|
muonPath: commandOptions.muonPath ?? "",
|
|
50
284
|
cefPath: commandOptions.cefPath,
|
|
51
285
|
stageDir: commandOptions.stageDir,
|
|
52
|
-
target: commandOptions.target ??
|
|
286
|
+
target: commandOptions.target ?? require_vite_options.getDefaultMuonPrepareTarget(process.platform, process.arch),
|
|
53
287
|
cacheDir: commandOptions.cacheDir,
|
|
54
288
|
force: commandOptions.force === true,
|
|
55
289
|
quiet: commandOptions.quiet === true,
|
|
@@ -60,6 +294,26 @@ var runPrepareCommand = async (commandOptions) => {
|
|
|
60
294
|
if (commandOptions.json === true) console.log(JSON.stringify(result, null, 2));
|
|
61
295
|
else console.log(result.stagePath ?? result.cefPath);
|
|
62
296
|
};
|
|
297
|
+
var runDevCommand = async (commandOptions, command) => {
|
|
298
|
+
const devOptions = {
|
|
299
|
+
root: process.cwd(),
|
|
300
|
+
environment: process.env,
|
|
301
|
+
quietPrepare: commandOptions.json === true
|
|
302
|
+
};
|
|
303
|
+
if (commandOptions.muonPath !== void 0) devOptions.muonPath = commandOptions.muonPath;
|
|
304
|
+
if (commandOptions.cefPath !== void 0) devOptions.cefPath = commandOptions.cefPath;
|
|
305
|
+
if (commandOptions.stageDir !== void 0) devOptions.stagePath = commandOptions.stageDir;
|
|
306
|
+
if (commandOptions.config !== void 0) devOptions.configPath = commandOptions.config;
|
|
307
|
+
if (commandOptions.assets !== void 0) devOptions.assetSourcePath = commandOptions.assets;
|
|
308
|
+
if (command.getOptionValueSource("debugger") === "cli") devOptions.enableDebugger = commandOptions.debugger === true;
|
|
309
|
+
const result = await runMuonDev(devOptions);
|
|
310
|
+
if (commandOptions.json === true) console.log(JSON.stringify(result, null, 2));
|
|
311
|
+
if (result.exitCode !== 0) process.exitCode = result.exitCode;
|
|
312
|
+
};
|
|
313
|
+
var runInitCommand = async () => {
|
|
314
|
+
const result = await require_vite_options.ensureMuonGitignoreEntry(process.cwd());
|
|
315
|
+
console.log(result.changed ? `Updated ${result.gitignorePath}` : result.gitignorePath);
|
|
316
|
+
};
|
|
63
317
|
var printEmbedConfigResult = (result, json) => {
|
|
64
318
|
if (json === true) console.log(JSON.stringify(result, null, 2));
|
|
65
319
|
else console.log(result.outputPath);
|
|
@@ -67,16 +321,16 @@ var printEmbedConfigResult = (result, json) => {
|
|
|
67
321
|
var runEmbedConfigCommand = async (commandOptions) => {
|
|
68
322
|
validateEmbedConfigOptions(commandOptions);
|
|
69
323
|
const configPath = commandOptions.config ?? "";
|
|
70
|
-
const coreResult = commandOptions.corePath !== void 0 ? await
|
|
324
|
+
const coreResult = commandOptions.corePath !== void 0 ? await require_vite_options.embedMuonConfigInCoreFile({
|
|
71
325
|
corePath: commandOptions.corePath,
|
|
72
326
|
configPath,
|
|
73
327
|
outputPath: commandOptions.output
|
|
74
|
-
}) : commandOptions.runtimePath !== void 0 ? await
|
|
328
|
+
}) : commandOptions.runtimePath !== void 0 ? await require_vite_options.embedMuonConfigInRuntime({
|
|
75
329
|
runtimePath: commandOptions.runtimePath,
|
|
76
330
|
configPath,
|
|
77
331
|
outputRuntimePath: commandOptions.outputRuntimePath
|
|
78
332
|
}) : void 0;
|
|
79
|
-
const bootstrapResult = commandOptions.bootstrapPath === void 0 ? void 0 : await
|
|
333
|
+
const bootstrapResult = commandOptions.bootstrapPath === void 0 ? void 0 : await require_vite_options.embedMuonConfigInBootstrapFile({
|
|
80
334
|
bootstrapPath: commandOptions.bootstrapPath,
|
|
81
335
|
configPath,
|
|
82
336
|
outputPath: commandOptions.outputBootstrap
|
|
@@ -102,6 +356,12 @@ var createCliCommand = () => {
|
|
|
102
356
|
program.command("build").description("Build CEF-free Muon app distribution directories").option("--target <target>", "target alias or comma-separated target aliases", appendTargetValues, []).option("--all", "build all supported targets").option("--assets <path>", "asset root path").option("--config <path>", "muon config path").option("--out-dir <path>", "output root directory").option("--name <name>", "launcher file name").option("--json", "write result as JSON").action(async (options) => {
|
|
103
357
|
await runBuildCommand(options);
|
|
104
358
|
});
|
|
359
|
+
const devCommand = program.command("dev").description("Launch Muon directly with local development assets").option("--muon-path <path>", "Muon runtime file root").option("--cef-path <path>", "CEF file root").option("--stage-dir <path>", "prepared runtime output directory").option("--config <path>", "muon config path").option("--assets <path>", "development asset directory").option("--no-debugger", "disable Muon debugger defaults").option("--json", "write result as JSON").action(async (options) => {
|
|
360
|
+
await runDevCommand(options, devCommand);
|
|
361
|
+
});
|
|
362
|
+
program.command("init").description("Initialize Muon project helper files").action(async () => {
|
|
363
|
+
await runInitCommand();
|
|
364
|
+
});
|
|
105
365
|
program.command("prepare").description("Prepare a Muon runtime with CEF files").requiredOption("--muon-path <path>", "Muon runtime file root").option("--cef-path <path>", "CEF file root").option("--stage-dir <path>", "prepared runtime output directory").option("--target <target>", "prepare target").option("--cache-dir <path>", "CEF artifact cache directory").option("--force", "rebuild an existing prepared runtime").option("-q, --quiet", "suppress native prepare progress messages").option("--json", "write result as JSON").action(async (options) => {
|
|
106
366
|
await runPrepareCommand(options);
|
|
107
367
|
});
|
package/dist/cli.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.cjs","names":[],"sources":["../src/generated/packageMetadata.ts","../src/cli.ts"],"sourcesContent":["// @ts-nocheck\n// This file is auto-generated by screw-up plugin\n// Do not edit manually\n\nexport const name = \"muon-ui\";\nexport const version = \"0.2.0\";\nexport const description = \"A multi-platform GUI application framework that uses CEF as its backend\";\nexport const author = \"Kouji Matsui (@kekyo@mi.kekyo.net)\";\nexport const license = \"MIT\";\nexport const repository_url = \"https://github.com/kekyo/muon-ui.git\";\nexport const git_commit_hash = \"6251ff88aafa8ae873657f39aed1ebba2fa329a4\";\n","#!/usr/bin/env node\n// muon - Multi-platform GUI application framework that uses CEF as its backend\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/muon\n\nimport { Command } from \"commander\";\n\nimport {\n getDefaultMuonPrepareTarget,\n runMuonPrepare,\n type MuonPrepareOptions,\n} from \"./prepare.js\";\nimport {\n embedMuonConfigInBootstrapFile,\n embedMuonConfigInCoreFile,\n embedMuonConfigInRuntime,\n type EmbedMuonConfigResult,\n} from \"./embed-config.js\";\nimport { buildMuonApp, type MuonBuildOptions } from \"./build.js\";\nimport { git_commit_hash, version } from \"./generated/packageMetadata.js\";\n\ninterface PrepareCommandOptions {\n muonPath: string | undefined;\n cefPath: string | undefined;\n stageDir: string | undefined;\n target: string | undefined;\n cacheDir: string | undefined;\n force: boolean | undefined;\n quiet: boolean | undefined;\n json: boolean | undefined;\n}\n\ninterface EmbedConfigCommandOptions {\n runtimePath: string | undefined;\n corePath: string | undefined;\n bootstrapPath: string | undefined;\n config: string | undefined;\n outputRuntimePath: string | undefined;\n output: string | undefined;\n outputBootstrap: string | undefined;\n json: boolean | undefined;\n}\n\ninterface BuildCommandOptions {\n target: string[];\n all: boolean | undefined;\n assets: string | undefined;\n config: string | undefined;\n outDir: string | undefined;\n name: string | undefined;\n json: boolean | undefined;\n}\n\nconst readTargetValues = (value: string): string[] => {\n return value\n .split(\",\")\n .map((value) => value.trim())\n .filter((value) => value.length > 0);\n};\n\nconst appendTargetValues = (value: string, previous: string[]): string[] => {\n return [...previous, ...readTargetValues(value)];\n};\n\nconst validateEmbedConfigOptions = (\n options: EmbedConfigCommandOptions,\n): void => {\n if (options.runtimePath !== undefined && options.corePath !== undefined) {\n throw new Error(\"Specify at most one of --runtime-path or --core-path.\");\n }\n if (\n options.runtimePath === undefined &&\n options.corePath === undefined &&\n options.bootstrapPath === undefined\n ) {\n throw new Error(\n \"Specify at least one of --runtime-path, --core-path, or --bootstrap-path.\",\n );\n }\n if (\n options.corePath !== undefined &&\n options.outputRuntimePath !== undefined\n ) {\n throw new Error(\"--output-runtime-path requires --runtime-path.\");\n }\n if (options.runtimePath !== undefined && options.output !== undefined) {\n throw new Error(\"--output requires --core-path.\");\n }\n if (\n options.bootstrapPath === undefined &&\n options.outputBootstrap !== undefined\n ) {\n throw new Error(\"--output-bootstrap requires --bootstrap-path.\");\n }\n};\n\nconst runBuildCommand = async (\n commandOptions: BuildCommandOptions,\n): Promise<void> => {\n const targets = commandOptions.target;\n if (commandOptions.all === true && targets.length > 0) {\n throw new Error(\"Specify either --all or --target, not both.\");\n }\n\n const buildOptions: MuonBuildOptions = {\n root: process.cwd(),\n allTargets: commandOptions.all === true,\n };\n\n if (targets.length > 0) {\n buildOptions.targets = targets;\n }\n if (commandOptions.assets !== undefined) {\n buildOptions.assetSourcePath = commandOptions.assets;\n }\n if (commandOptions.config !== undefined) {\n buildOptions.configPath = commandOptions.config;\n }\n if (commandOptions.outDir !== undefined) {\n buildOptions.outputRoot = commandOptions.outDir;\n }\n if (commandOptions.name !== undefined) {\n buildOptions.appName = commandOptions.name;\n }\n\n const result = await buildMuonApp(buildOptions);\n if (commandOptions.json === true) {\n console.log(JSON.stringify(result, null, 2));\n } else {\n for (const target of result.targets) {\n console.log(target.outputPath);\n }\n }\n};\n\nconst runPrepareCommand = async (\n commandOptions: PrepareCommandOptions,\n): Promise<void> => {\n const prepareOptions: MuonPrepareOptions = {\n muonPath: commandOptions.muonPath ?? \"\",\n cefPath: commandOptions.cefPath,\n stageDir: commandOptions.stageDir,\n target:\n commandOptions.target ??\n getDefaultMuonPrepareTarget(process.platform, process.arch),\n cacheDir: commandOptions.cacheDir,\n force: commandOptions.force === true,\n quiet: commandOptions.quiet === true,\n prepareExecutablePath: undefined,\n environment: process.env,\n cwd: process.cwd(),\n };\n const result = await runMuonPrepare(prepareOptions);\n if (commandOptions.json === true) {\n console.log(JSON.stringify(result, null, 2));\n } else {\n console.log(result.stagePath ?? result.cefPath);\n }\n};\n\nconst printEmbedConfigResult = (\n result: EmbedMuonConfigResult,\n json: boolean | undefined,\n): void => {\n if (json === true) {\n console.log(JSON.stringify(result, null, 2));\n } else {\n console.log(result.outputPath);\n }\n};\n\nconst runEmbedConfigCommand = async (\n commandOptions: EmbedConfigCommandOptions,\n): Promise<void> => {\n validateEmbedConfigOptions(commandOptions);\n const configPath = commandOptions.config ?? \"\";\n const coreResult =\n commandOptions.corePath !== undefined\n ? await embedMuonConfigInCoreFile({\n corePath: commandOptions.corePath,\n configPath,\n outputPath: commandOptions.output,\n })\n : commandOptions.runtimePath !== undefined\n ? await embedMuonConfigInRuntime({\n runtimePath: commandOptions.runtimePath,\n configPath,\n outputRuntimePath: commandOptions.outputRuntimePath,\n })\n : undefined;\n const bootstrapResult =\n commandOptions.bootstrapPath === undefined\n ? undefined\n : await embedMuonConfigInBootstrapFile({\n bootstrapPath: commandOptions.bootstrapPath,\n configPath,\n outputPath: commandOptions.outputBootstrap,\n });\n if (coreResult !== undefined && bootstrapResult !== undefined) {\n if (commandOptions.json === true) {\n console.log(\n JSON.stringify(\n {\n core: coreResult,\n bootstrap: bootstrapResult,\n },\n null,\n 2,\n ),\n );\n } else {\n console.log(`${coreResult.outputPath}\\n${bootstrapResult.outputPath}`);\n }\n return;\n }\n const result = coreResult ?? bootstrapResult;\n if (result === undefined) {\n throw new Error(\"No embed-config target was specified.\");\n }\n printEmbedConfigResult(result, commandOptions.json);\n};\n\nconst createCliCommand = (): Command => {\n const program = new Command();\n\n program\n .name(\"muon\")\n .description(\n \"Multi-platform GUI application framework that uses CEF as its backend\",\n )\n .version(`${version}-${git_commit_hash}`)\n .showSuggestionAfterError()\n .action(() => {\n program.outputHelp({ error: true });\n process.exitCode = 1;\n });\n\n program\n .command(\"build\")\n .description(\"Build CEF-free Muon app distribution directories\")\n .option(\n \"--target <target>\",\n \"target alias or comma-separated target aliases\",\n appendTargetValues,\n [],\n )\n .option(\"--all\", \"build all supported targets\")\n .option(\"--assets <path>\", \"asset root path\")\n .option(\"--config <path>\", \"muon config path\")\n .option(\"--out-dir <path>\", \"output root directory\")\n .option(\"--name <name>\", \"launcher file name\")\n .option(\"--json\", \"write result as JSON\")\n .action(async (options: BuildCommandOptions) => {\n await runBuildCommand(options);\n });\n\n program\n .command(\"prepare\")\n .description(\"Prepare a Muon runtime with CEF files\")\n .requiredOption(\"--muon-path <path>\", \"Muon runtime file root\")\n .option(\"--cef-path <path>\", \"CEF file root\")\n .option(\"--stage-dir <path>\", \"prepared runtime output directory\")\n .option(\"--target <target>\", \"prepare target\")\n .option(\"--cache-dir <path>\", \"CEF artifact cache directory\")\n .option(\"--force\", \"rebuild an existing prepared runtime\")\n .option(\"-q, --quiet\", \"suppress native prepare progress messages\")\n .option(\"--json\", \"write result as JSON\")\n .action(async (options: PrepareCommandOptions) => {\n await runPrepareCommand(options);\n });\n\n program\n .command(\"embed-config\")\n .description(\"Embed muon.json into Muon runtime files\")\n .option(\"--runtime-path <path>\", \"prepared runtime directory\")\n .option(\"--core-path <path>\", \"muon-core executable path\")\n .option(\"--bootstrap-path <path>\", \"muon-bootstrap executable path\")\n .requiredOption(\"--config <path>\", \"muon config path\")\n .option(\"--output-runtime-path <path>\", \"patched runtime output directory\")\n .option(\"--output <path>\", \"patched muon-core output path\")\n .option(\"--output-bootstrap <path>\", \"patched bootstrap output path\")\n .option(\"--json\", \"write result as JSON\")\n .action(async (options: EmbedConfigCommandOptions) => {\n await runEmbedConfigCommand(options);\n });\n\n return program;\n};\n\nconst main = async (): Promise<void> => {\n try {\n await createCliCommand().parseAsync(process.argv);\n } catch (error) {\n console.error(error instanceof Error ? error.message : String(error));\n process.exitCode = 1;\n }\n};\n\nvoid main();\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"cli.cjs","names":[],"sources":["../src/dev.ts","../src/generated/packageMetadata.ts","../src/cli.ts"],"sourcesContent":["// muon - Multi-platform GUI application framework that uses CEF as its backend\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/muon\n\nimport { spawn } from \"node:child_process\";\nimport { constants } from \"node:fs\";\nimport { access, mkdir, readFile, stat, writeFile } from \"node:fs/promises\";\nimport { dirname, isAbsolute, join, resolve } from \"node:path\";\n\nimport { parse } from \"json5\";\nimport type { UserConfig } from \"vite\";\n\nimport { ensureMuonGitignoreEntry } from \"./gitignore.js\";\nimport { getDefaultMuonPrepareTarget, runMuonPrepare } from \"./prepare.js\";\nimport {\n getMuonExecutablePath,\n resolveMuonRuntimePath,\n} from \"./vite-internals.js\";\nimport {\n flattenVitePluginOptions,\n getMuonVitePluginOptions,\n} from \"./vite-options.js\";\nimport type { MuonVitePluginOptions } from \"./vite.js\";\n\nconst muonRecycleExitCode = 88;\n\ntype JsonObject = Record<string, unknown>;\n\ninterface LoadedViteMuonOptions {\n root: string;\n pluginOptions: MuonVitePluginOptions | undefined;\n}\n\ninterface ProjectConfigResolution {\n configPath: string | undefined;\n config: JsonObject | undefined;\n}\n\ninterface MuonDevOverrideConfig {\n asset?: {\n sourcePath: string;\n };\n cdp?: {\n enable: true;\n };\n browser?: {\n keybind: {\n devtools: \"f12\";\n recycle: \"ctrl+f12\";\n };\n };\n}\n\n/**\n * Options for launching Muon directly against local development assets.\n */\nexport interface MuonDevOptions {\n /**\n * Directory used as the project root.\n */\n root?: string;\n\n /**\n * Directory containing muon-core runtime files such as muon-core and plugins.\n */\n muonPath?: string;\n\n /**\n * Directory containing CEF files, or a CEF archive root with Release/Resources.\n */\n cefPath?: string;\n\n /**\n * Runtime staging directory used for development startup.\n */\n stagePath?: string;\n\n /**\n * Muon config path passed before the generated development override.\n */\n configPath?: string;\n\n /**\n * Local development asset directory.\n */\n assetSourcePath?: string;\n\n /**\n * Enable the Muon debugger defaults during development startup.\n */\n enableDebugger?: boolean;\n\n /**\n * Platform used for runtime target resolution.\n *\n * @remarks This is injectable for tests. Production code uses process.platform.\n */\n platform?: NodeJS.Platform;\n\n /**\n * Architecture used for runtime target resolution.\n *\n * @remarks This is injectable for tests. Production code uses process.arch.\n */\n architecture?: NodeJS.Architecture;\n\n /**\n * Environment used for child processes.\n */\n environment?: NodeJS.ProcessEnv;\n\n /**\n * Suppress native prepare progress messages.\n */\n quietPrepare?: boolean;\n}\n\n/**\n * Result returned after the Muon development process exits.\n */\nexport interface MuonDevResult {\n /**\n * Absolute project root used for development startup.\n */\n root: string;\n\n /**\n * Muon runtime target used for prepare.\n */\n target: string;\n\n /**\n * Directory containing muon-core files used as the staging source.\n */\n muonPath: string;\n\n /**\n * Directory or cached archive containing CEF files used as the staging source.\n */\n cefPath: string;\n\n /**\n * Directory containing the prepared Muon runtime.\n */\n stagePath: string;\n\n /**\n * Prepared muon-core executable path.\n */\n muonExecutablePath: string;\n\n /**\n * Project config path passed before the generated development override.\n */\n projectConfigPath?: string;\n\n /**\n * Generated development override config path.\n */\n overrideConfigPath: string;\n\n /**\n * Effective local asset source path.\n */\n assetSourcePath: string;\n\n /**\n * Exit code returned by the Muon process.\n */\n exitCode: number;\n}\n\nconst defaultProjectConfigFileNames = [\"muon.json5\", \"muon.jsonc\", \"muon.json\"];\n\nconst resolveFromRoot = (root: string, path: string): string =>\n isAbsolute(path) ? path : resolve(root, path);\n\nconst isJsonObject = (value: unknown): value is JsonObject =>\n typeof value === \"object\" && value !== null && !Array.isArray(value);\n\nconst getErrorMessage = (error: unknown): string =>\n error instanceof Error ? error.message : String(error);\n\nconst fileExists = async (path: string): Promise<boolean> => {\n try {\n const stats = await stat(path);\n return stats.isFile();\n } catch {\n return false;\n }\n};\n\nconst directoryExists = async (path: string): Promise<boolean> => {\n try {\n const stats = await stat(path);\n return stats.isDirectory();\n } catch {\n return false;\n }\n};\n\nconst isMissingVitePackageError = (error: unknown): boolean => {\n const candidate = error as { code?: unknown; message?: unknown };\n return (\n candidate.code === \"ERR_MODULE_NOT_FOUND\" &&\n typeof candidate.message === \"string\" &&\n candidate.message.includes(\"vite\")\n );\n};\n\nconst loadViteMuonOptions = async (\n cwd: string,\n): Promise<LoadedViteMuonOptions> => {\n let vite: typeof import(\"vite\");\n try {\n vite = await import(\"vite\");\n } catch (error) {\n if (isMissingVitePackageError(error)) {\n return {\n root: resolve(cwd),\n pluginOptions: undefined,\n };\n }\n throw error;\n }\n\n const loaded = await vite.loadConfigFromFile(\n {\n command: \"serve\",\n mode: \"development\",\n isPreview: false,\n isSsrBuild: false,\n },\n undefined,\n cwd,\n \"silent\",\n );\n if (loaded === null) {\n return {\n root: resolve(cwd),\n pluginOptions: undefined,\n };\n }\n\n const config = loaded.config as UserConfig;\n const root =\n typeof config.root === \"string\" ? resolve(cwd, config.root) : resolve(cwd);\n const plugins = await flattenVitePluginOptions(config.plugins);\n const muonPlugins = plugins\n .map((plugin) => getMuonVitePluginOptions(plugin))\n .filter(\n (pluginOptions): pluginOptions is MuonVitePluginOptions =>\n pluginOptions !== undefined,\n );\n\n if (muonPlugins.length > 1) {\n throw new Error(\n \"Multiple muon() plugin definitions were found in vite.config.*.\",\n );\n }\n\n return {\n root,\n pluginOptions: muonPlugins[0],\n };\n};\n\nconst resolveProjectConfigPath = async (\n root: string,\n configPath: string | undefined,\n): Promise<string | undefined> => {\n if (configPath !== undefined) {\n const resolvedPath = resolveFromRoot(root, configPath);\n if (!(await fileExists(resolvedPath))) {\n throw new Error(`Muon config file does not exist: ${resolvedPath}`);\n }\n return resolvedPath;\n }\n\n for (const fileName of defaultProjectConfigFileNames) {\n const candidatePath = join(root, fileName);\n if (await fileExists(candidatePath)) {\n return candidatePath;\n }\n }\n\n return undefined;\n};\n\nconst readJsonObjectFile = async (\n filePath: string,\n label: string,\n): Promise<JsonObject> => {\n let content: string;\n try {\n content = await readFile(filePath, \"utf8\");\n } catch (error) {\n throw new Error(\n `${label} could not be read: ${filePath}: ${getErrorMessage(error)}`,\n );\n }\n\n let parsed: unknown;\n try {\n parsed = parse(content);\n } catch (error) {\n throw new Error(\n `${label} could not be parsed: ${filePath}: ${getErrorMessage(error)}`,\n );\n }\n\n if (!isJsonObject(parsed)) {\n throw new Error(`${label} must contain a JSON object: ${filePath}`);\n }\n\n return parsed;\n};\n\nconst resolveProjectConfig = async (\n root: string,\n configPath: string | undefined,\n): Promise<ProjectConfigResolution> => {\n const resolvedConfigPath = await resolveProjectConfigPath(root, configPath);\n if (resolvedConfigPath === undefined) {\n return {\n configPath: undefined,\n config: undefined,\n };\n }\n\n return {\n configPath: resolvedConfigPath,\n config: await readJsonObjectFile(resolvedConfigPath, \"muon config\"),\n };\n};\n\nconst readConfigAssetSourcePath = (\n config: JsonObject | undefined,\n): string | undefined => {\n if (config === undefined) {\n return undefined;\n }\n\n const asset = config.asset;\n if (asset === undefined) {\n return undefined;\n }\n if (!isJsonObject(asset)) {\n throw new Error(\"muon config asset must be an object when present.\");\n }\n\n const sourcePath = asset.sourcePath;\n if (sourcePath === undefined) {\n return undefined;\n }\n if (typeof sourcePath !== \"string\") {\n throw new Error(\"muon config asset.sourcePath must be a string.\");\n }\n if (sourcePath.trim().length === 0) {\n throw new Error(\"muon config asset.sourcePath must not be empty.\");\n }\n return sourcePath;\n};\n\nconst assertDevelopmentAssetDirectory = async (\n assetSourcePath: string,\n): Promise<void> => {\n if (await directoryExists(assetSourcePath)) {\n return;\n }\n\n try {\n await access(assetSourcePath, constants.F_OK);\n } catch {\n throw new Error(`Muon dev asset source does not exist: ${assetSourcePath}`);\n }\n\n throw new Error(\n `Muon dev asset source must be a directory: ${assetSourcePath}`,\n );\n};\n\nconst resolveAssetSource = async (\n root: string,\n assetSourcePath: string | undefined,\n projectConfig: ProjectConfigResolution,\n): Promise<{\n assetSourcePath: string;\n overrideAssetSourcePath: string | undefined;\n}> => {\n const configuredAssetSourcePath = readConfigAssetSourcePath(\n projectConfig.config,\n );\n if (assetSourcePath !== undefined) {\n const resolvedPath = resolveFromRoot(root, assetSourcePath);\n await assertDevelopmentAssetDirectory(resolvedPath);\n return {\n assetSourcePath: resolvedPath,\n overrideAssetSourcePath: resolvedPath,\n };\n }\n\n if (\n configuredAssetSourcePath !== undefined &&\n projectConfig.configPath !== undefined\n ) {\n return {\n assetSourcePath: resolve(\n dirname(projectConfig.configPath),\n configuredAssetSourcePath,\n ),\n overrideAssetSourcePath: undefined,\n };\n }\n\n const defaultAssetSourcePath = resolve(root, \"assets\");\n await assertDevelopmentAssetDirectory(defaultAssetSourcePath);\n return {\n assetSourcePath: defaultAssetSourcePath,\n overrideAssetSourcePath: defaultAssetSourcePath,\n };\n};\n\nconst createMuonDevOverrideConfig = (\n assetSourcePath: string | undefined,\n enableDebugger: boolean,\n): MuonDevOverrideConfig => ({\n ...(assetSourcePath === undefined\n ? {}\n : {\n asset: {\n sourcePath: assetSourcePath,\n },\n }),\n ...(enableDebugger\n ? {\n cdp: {\n enable: true,\n },\n browser: {\n keybind: {\n devtools: \"f12\",\n recycle: \"ctrl+f12\",\n },\n },\n }\n : {}),\n});\n\nconst writeMuonDevOverrideConfig = async (\n overrideConfigPath: string,\n overrideConfig: MuonDevOverrideConfig,\n): Promise<void> => {\n await mkdir(dirname(overrideConfigPath), { recursive: true });\n await writeFile(\n overrideConfigPath,\n `${JSON.stringify(overrideConfig, null, 2)}\\n`,\n );\n};\n\nconst runMuonExecutable = async (\n muonExecutablePath: string,\n configPaths: readonly string[],\n environment: NodeJS.ProcessEnv,\n): Promise<number> => {\n const args = configPaths.flatMap((configPath) => [\"-c\", configPath]);\n let exitCode = 0;\n do {\n const child = spawn(muonExecutablePath, args, {\n cwd: dirname(muonExecutablePath),\n env: environment,\n stdio: [\"ignore\", \"inherit\", \"inherit\"],\n });\n\n exitCode = await new Promise<number>((resolvePromise, reject) => {\n child.once(\"error\", reject);\n child.once(\"close\", (code) => {\n resolvePromise(code ?? 1);\n });\n });\n } while (exitCode === muonRecycleExitCode);\n return exitCode;\n};\n\n/**\n * Launches Muon directly against local development assets.\n *\n * @param options Development startup options.\n * @returns Development startup result after the Muon process exits.\n */\nexport const runMuonDev = async (\n options: MuonDevOptions = {},\n): Promise<MuonDevResult> => {\n const cwd = resolve(options.root ?? process.cwd());\n const loadedViteOptions = await loadViteMuonOptions(cwd);\n const root = loadedViteOptions.root;\n const pluginOptions = loadedViteOptions.pluginOptions;\n const platform = options.platform ?? process.platform;\n const architecture = options.architecture ?? process.arch;\n const environment = options.environment ?? process.env;\n const target = getDefaultMuonPrepareTarget(platform, architecture);\n const muonPath = resolveMuonRuntimePath({\n root,\n target,\n muonPath: options.muonPath ?? pluginOptions?.muonPath,\n });\n const cefPath =\n options.cefPath !== undefined\n ? resolveFromRoot(root, options.cefPath)\n : pluginOptions?.cefPath === undefined\n ? undefined\n : resolveFromRoot(root, pluginOptions.cefPath);\n const stagePath =\n options.stagePath !== undefined\n ? resolveFromRoot(root, options.stagePath)\n : pluginOptions?.stagePath === undefined\n ? resolve(root, \".muon\", target)\n : resolveFromRoot(root, pluginOptions.stagePath);\n const enableDebugger =\n options.enableDebugger ?? pluginOptions?.enableDebugger ?? true;\n const projectConfig = await resolveProjectConfig(root, options.configPath);\n const asset = await resolveAssetSource(\n root,\n options.assetSourcePath,\n projectConfig,\n );\n const overrideConfigPath = join(root, \".muon\", \"dev\", \"muon.dev.json\");\n\n await ensureMuonGitignoreEntry(root);\n\n const preparedRuntime = await runMuonPrepare({\n muonPath,\n cefPath,\n stageDir: stagePath,\n target,\n cacheDir: environment.MUON_CACHE_DIR,\n force: false,\n quiet: options.quietPrepare === true,\n prepareExecutablePath: undefined,\n environment,\n cwd: root,\n });\n if (preparedRuntime.stagePath === undefined) {\n throw new Error(\"muon-prepare did not return a staged runtime path.\");\n }\n\n await writeMuonDevOverrideConfig(\n overrideConfigPath,\n createMuonDevOverrideConfig(asset.overrideAssetSourcePath, enableDebugger),\n );\n const muonExecutablePath = getMuonExecutablePath(\n preparedRuntime.stagePath,\n platform,\n );\n const configPaths = [\n ...(projectConfig.configPath === undefined\n ? []\n : [projectConfig.configPath]),\n overrideConfigPath,\n ];\n const exitCode = await runMuonExecutable(\n muonExecutablePath,\n configPaths,\n environment,\n );\n\n return {\n root,\n target,\n muonPath: preparedRuntime.muonPath,\n cefPath: preparedRuntime.cefPath,\n stagePath: preparedRuntime.stagePath,\n muonExecutablePath,\n ...(projectConfig.configPath === undefined\n ? {}\n : { projectConfigPath: projectConfig.configPath }),\n overrideConfigPath,\n assetSourcePath: asset.assetSourcePath,\n exitCode,\n };\n};\n","// @ts-nocheck\n// This file is auto-generated by screw-up plugin\n// Do not edit manually\n\nexport const name = \"muon-ui\";\nexport const version = \"0.4.0\";\nexport const description = \"A multi-platform GUI application framework that uses CEF as its backend\";\nexport const author = \"Kouji Matsui (@kekyo@mi.kekyo.net)\";\nexport const license = \"MIT\";\nexport const repository_url = \"https://github.com/kekyo/muon-ui.git\";\nexport const git_commit_hash = \"44d549142c8cbfa13cb29d10be2568652a68bf50\";\n","#!/usr/bin/env node\n// muon - Multi-platform GUI application framework that uses CEF as its backend\n// Copyright (c) Kouji Matsui. (@kekyo@mi.kekyo.net)\n// Under MIT.\n// https://github.com/kekyo/muon\n\nimport { Command } from \"commander\";\n\nimport {\n getDefaultMuonPrepareTarget,\n runMuonPrepare,\n type MuonPrepareOptions,\n} from \"./prepare.js\";\nimport { ensureMuonGitignoreEntry } from \"./gitignore.js\";\nimport {\n embedMuonConfigInBootstrapFile,\n embedMuonConfigInCoreFile,\n embedMuonConfigInRuntime,\n type EmbedMuonConfigResult,\n} from \"./embed-config.js\";\nimport { buildMuonApp, type MuonBuildOptions } from \"./build.js\";\nimport { runMuonDev, type MuonDevOptions } from \"./dev.js\";\nimport { git_commit_hash, version } from \"./generated/packageMetadata.js\";\n\ninterface PrepareCommandOptions {\n muonPath: string | undefined;\n cefPath: string | undefined;\n stageDir: string | undefined;\n target: string | undefined;\n cacheDir: string | undefined;\n force: boolean | undefined;\n quiet: boolean | undefined;\n json: boolean | undefined;\n}\n\ninterface EmbedConfigCommandOptions {\n runtimePath: string | undefined;\n corePath: string | undefined;\n bootstrapPath: string | undefined;\n config: string | undefined;\n outputRuntimePath: string | undefined;\n output: string | undefined;\n outputBootstrap: string | undefined;\n json: boolean | undefined;\n}\n\ninterface BuildCommandOptions {\n target: string[];\n all: boolean | undefined;\n assets: string | undefined;\n config: string | undefined;\n outDir: string | undefined;\n name: string | undefined;\n json: boolean | undefined;\n}\n\ninterface DevCommandOptions {\n muonPath: string | undefined;\n cefPath: string | undefined;\n stageDir: string | undefined;\n config: string | undefined;\n assets: string | undefined;\n debugger: boolean | undefined;\n json: boolean | undefined;\n}\n\nconst readTargetValues = (value: string): string[] => {\n return value\n .split(\",\")\n .map((value) => value.trim())\n .filter((value) => value.length > 0);\n};\n\nconst appendTargetValues = (value: string, previous: string[]): string[] => {\n return [...previous, ...readTargetValues(value)];\n};\n\nconst validateEmbedConfigOptions = (\n options: EmbedConfigCommandOptions,\n): void => {\n if (options.runtimePath !== undefined && options.corePath !== undefined) {\n throw new Error(\"Specify at most one of --runtime-path or --core-path.\");\n }\n if (\n options.runtimePath === undefined &&\n options.corePath === undefined &&\n options.bootstrapPath === undefined\n ) {\n throw new Error(\n \"Specify at least one of --runtime-path, --core-path, or --bootstrap-path.\",\n );\n }\n if (\n options.corePath !== undefined &&\n options.outputRuntimePath !== undefined\n ) {\n throw new Error(\"--output-runtime-path requires --runtime-path.\");\n }\n if (options.runtimePath !== undefined && options.output !== undefined) {\n throw new Error(\"--output requires --core-path.\");\n }\n if (\n options.bootstrapPath === undefined &&\n options.outputBootstrap !== undefined\n ) {\n throw new Error(\"--output-bootstrap requires --bootstrap-path.\");\n }\n};\n\nconst runBuildCommand = async (\n commandOptions: BuildCommandOptions,\n): Promise<void> => {\n const targets = commandOptions.target;\n if (commandOptions.all === true && targets.length > 0) {\n throw new Error(\"Specify either --all or --target, not both.\");\n }\n\n const buildOptions: MuonBuildOptions = {\n root: process.cwd(),\n allTargets: commandOptions.all === true,\n };\n\n if (targets.length > 0) {\n buildOptions.targets = targets;\n }\n if (commandOptions.assets !== undefined) {\n buildOptions.assetSourcePath = commandOptions.assets;\n }\n if (commandOptions.config !== undefined) {\n buildOptions.configPath = commandOptions.config;\n }\n if (commandOptions.outDir !== undefined) {\n buildOptions.outputRoot = commandOptions.outDir;\n }\n if (commandOptions.name !== undefined) {\n buildOptions.appName = commandOptions.name;\n }\n\n const result = await buildMuonApp(buildOptions);\n if (commandOptions.json === true) {\n console.log(JSON.stringify(result, null, 2));\n } else {\n for (const target of result.targets) {\n console.log(target.outputPath);\n }\n }\n};\n\nconst runPrepareCommand = async (\n commandOptions: PrepareCommandOptions,\n): Promise<void> => {\n const prepareOptions: MuonPrepareOptions = {\n muonPath: commandOptions.muonPath ?? \"\",\n cefPath: commandOptions.cefPath,\n stageDir: commandOptions.stageDir,\n target:\n commandOptions.target ??\n getDefaultMuonPrepareTarget(process.platform, process.arch),\n cacheDir: commandOptions.cacheDir,\n force: commandOptions.force === true,\n quiet: commandOptions.quiet === true,\n prepareExecutablePath: undefined,\n environment: process.env,\n cwd: process.cwd(),\n };\n const result = await runMuonPrepare(prepareOptions);\n if (commandOptions.json === true) {\n console.log(JSON.stringify(result, null, 2));\n } else {\n console.log(result.stagePath ?? result.cefPath);\n }\n};\n\nconst runDevCommand = async (\n commandOptions: DevCommandOptions,\n command: Command,\n): Promise<void> => {\n const devOptions: MuonDevOptions = {\n root: process.cwd(),\n environment: process.env,\n quietPrepare: commandOptions.json === true,\n };\n\n if (commandOptions.muonPath !== undefined) {\n devOptions.muonPath = commandOptions.muonPath;\n }\n if (commandOptions.cefPath !== undefined) {\n devOptions.cefPath = commandOptions.cefPath;\n }\n if (commandOptions.stageDir !== undefined) {\n devOptions.stagePath = commandOptions.stageDir;\n }\n if (commandOptions.config !== undefined) {\n devOptions.configPath = commandOptions.config;\n }\n if (commandOptions.assets !== undefined) {\n devOptions.assetSourcePath = commandOptions.assets;\n }\n if (command.getOptionValueSource(\"debugger\") === \"cli\") {\n devOptions.enableDebugger = commandOptions.debugger === true;\n }\n\n const result = await runMuonDev(devOptions);\n if (commandOptions.json === true) {\n console.log(JSON.stringify(result, null, 2));\n }\n if (result.exitCode !== 0) {\n process.exitCode = result.exitCode;\n }\n};\n\nconst runInitCommand = async (): Promise<void> => {\n const result = await ensureMuonGitignoreEntry(process.cwd());\n console.log(\n result.changed ? `Updated ${result.gitignorePath}` : result.gitignorePath,\n );\n};\n\nconst printEmbedConfigResult = (\n result: EmbedMuonConfigResult,\n json: boolean | undefined,\n): void => {\n if (json === true) {\n console.log(JSON.stringify(result, null, 2));\n } else {\n console.log(result.outputPath);\n }\n};\n\nconst runEmbedConfigCommand = async (\n commandOptions: EmbedConfigCommandOptions,\n): Promise<void> => {\n validateEmbedConfigOptions(commandOptions);\n const configPath = commandOptions.config ?? \"\";\n const coreResult =\n commandOptions.corePath !== undefined\n ? await embedMuonConfigInCoreFile({\n corePath: commandOptions.corePath,\n configPath,\n outputPath: commandOptions.output,\n })\n : commandOptions.runtimePath !== undefined\n ? await embedMuonConfigInRuntime({\n runtimePath: commandOptions.runtimePath,\n configPath,\n outputRuntimePath: commandOptions.outputRuntimePath,\n })\n : undefined;\n const bootstrapResult =\n commandOptions.bootstrapPath === undefined\n ? undefined\n : await embedMuonConfigInBootstrapFile({\n bootstrapPath: commandOptions.bootstrapPath,\n configPath,\n outputPath: commandOptions.outputBootstrap,\n });\n if (coreResult !== undefined && bootstrapResult !== undefined) {\n if (commandOptions.json === true) {\n console.log(\n JSON.stringify(\n {\n core: coreResult,\n bootstrap: bootstrapResult,\n },\n null,\n 2,\n ),\n );\n } else {\n console.log(`${coreResult.outputPath}\\n${bootstrapResult.outputPath}`);\n }\n return;\n }\n const result = coreResult ?? bootstrapResult;\n if (result === undefined) {\n throw new Error(\"No embed-config target was specified.\");\n }\n printEmbedConfigResult(result, commandOptions.json);\n};\n\nconst createCliCommand = (): Command => {\n const program = new Command();\n\n program\n .name(\"muon\")\n .description(\n \"Multi-platform GUI application framework that uses CEF as its backend\",\n )\n .version(`${version}-${git_commit_hash}`)\n .showSuggestionAfterError()\n .action(() => {\n program.outputHelp({ error: true });\n process.exitCode = 1;\n });\n\n program\n .command(\"build\")\n .description(\"Build CEF-free Muon app distribution directories\")\n .option(\n \"--target <target>\",\n \"target alias or comma-separated target aliases\",\n appendTargetValues,\n [],\n )\n .option(\"--all\", \"build all supported targets\")\n .option(\"--assets <path>\", \"asset root path\")\n .option(\"--config <path>\", \"muon config path\")\n .option(\"--out-dir <path>\", \"output root directory\")\n .option(\"--name <name>\", \"launcher file name\")\n .option(\"--json\", \"write result as JSON\")\n .action(async (options: BuildCommandOptions) => {\n await runBuildCommand(options);\n });\n\n const devCommand = program\n .command(\"dev\")\n .description(\"Launch Muon directly with local development assets\")\n .option(\"--muon-path <path>\", \"Muon runtime file root\")\n .option(\"--cef-path <path>\", \"CEF file root\")\n .option(\"--stage-dir <path>\", \"prepared runtime output directory\")\n .option(\"--config <path>\", \"muon config path\")\n .option(\"--assets <path>\", \"development asset directory\")\n .option(\"--no-debugger\", \"disable Muon debugger defaults\")\n .option(\"--json\", \"write result as JSON\")\n .action(async (options: DevCommandOptions) => {\n await runDevCommand(options, devCommand);\n });\n\n program\n .command(\"init\")\n .description(\"Initialize Muon project helper files\")\n .action(async () => {\n await runInitCommand();\n });\n\n program\n .command(\"prepare\")\n .description(\"Prepare a Muon runtime with CEF files\")\n .requiredOption(\"--muon-path <path>\", \"Muon runtime file root\")\n .option(\"--cef-path <path>\", \"CEF file root\")\n .option(\"--stage-dir <path>\", \"prepared runtime output directory\")\n .option(\"--target <target>\", \"prepare target\")\n .option(\"--cache-dir <path>\", \"CEF artifact cache directory\")\n .option(\"--force\", \"rebuild an existing prepared runtime\")\n .option(\"-q, --quiet\", \"suppress native prepare progress messages\")\n .option(\"--json\", \"write result as JSON\")\n .action(async (options: PrepareCommandOptions) => {\n await runPrepareCommand(options);\n });\n\n program\n .command(\"embed-config\")\n .description(\"Embed muon.json into Muon runtime files\")\n .option(\"--runtime-path <path>\", \"prepared runtime directory\")\n .option(\"--core-path <path>\", \"muon-core executable path\")\n .option(\"--bootstrap-path <path>\", \"muon-bootstrap executable path\")\n .requiredOption(\"--config <path>\", \"muon config path\")\n .option(\"--output-runtime-path <path>\", \"patched runtime output directory\")\n .option(\"--output <path>\", \"patched muon-core output path\")\n .option(\"--output-bootstrap <path>\", \"patched bootstrap output path\")\n .option(\"--json\", \"write result as JSON\")\n .action(async (options: EmbedConfigCommandOptions) => {\n await runEmbedConfigCommand(options);\n });\n\n return program;\n};\n\nconst main = async (): Promise<void> => {\n try {\n await createCliCommand().parseAsync(process.argv);\n } catch (error) {\n console.error(error instanceof Error ? error.message : String(error));\n process.exitCode = 1;\n }\n};\n\nvoid main();\n"],"mappings":"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"}
|
package/dist/index.cjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* name: muon-ui
|
|
3
|
-
* version: 0.
|
|
3
|
+
* version: 0.4.0
|
|
4
4
|
* description: A multi-platform GUI application framework that uses CEF as its backend
|
|
5
5
|
* author: Kouji Matsui (@kekyo@mi.kekyo.net)
|
|
6
6
|
* license: MIT
|
|
7
7
|
* repository.url: https://github.com/kekyo/muon-ui.git
|
|
8
|
-
* git.commit.hash:
|
|
8
|
+
* git.commit.hash: 44d549142c8cbfa13cb29d10be2568652a68bf50
|
|
9
9
|
*/
|
package/dist/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* name: muon-ui
|
|
3
|
-
* version: 0.
|
|
3
|
+
* version: 0.4.0
|
|
4
4
|
* description: A multi-platform GUI application framework that uses CEF as its backend
|
|
5
5
|
* author: Kouji Matsui (@kekyo@mi.kekyo.net)
|
|
6
6
|
* license: MIT
|
|
7
7
|
* repository.url: https://github.com/kekyo/muon-ui.git
|
|
8
|
-
* git.commit.hash:
|
|
8
|
+
* git.commit.hash: 44d549142c8cbfa13cb29d10be2568652a68bf50
|
|
9
9
|
*/
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -264,3 +264,100 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
264
264
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
265
265
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
266
266
|
SOFTWARE.
|
|
267
|
+
|
|
268
|
+
## Noto color emoji
|
|
269
|
+
|
|
270
|
+
Source: https://github.com/googlefonts/noto-emoji/
|
|
271
|
+
|
|
272
|
+
Copyright 2013 Google LLC
|
|
273
|
+
|
|
274
|
+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
|
275
|
+
This license is copied below, and is also available with a FAQ at:
|
|
276
|
+
https://scripts.sil.org/OFL
|
|
277
|
+
|
|
278
|
+
-----------------------------------------------------------
|
|
279
|
+
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
|
280
|
+
-----------------------------------------------------------
|
|
281
|
+
|
|
282
|
+
PREAMBLE
|
|
283
|
+
The goals of the Open Font License (OFL) are to stimulate worldwide
|
|
284
|
+
development of collaborative font projects, to support the font creation
|
|
285
|
+
efforts of academic and linguistic communities, and to provide a free and
|
|
286
|
+
open framework in which fonts may be shared and improved in partnership
|
|
287
|
+
with others.
|
|
288
|
+
|
|
289
|
+
The OFL allows the licensed fonts to be used, studied, modified and
|
|
290
|
+
redistributed freely as long as they are not sold by themselves. The
|
|
291
|
+
fonts, including any derivative works, can be bundled, embedded,
|
|
292
|
+
redistributed and/or sold with any software provided that any reserved
|
|
293
|
+
names are not used by derivative works. The fonts and derivatives,
|
|
294
|
+
however, cannot be released under any other type of license. The
|
|
295
|
+
requirement for fonts to remain under this license does not apply
|
|
296
|
+
to any document created using the fonts or their derivatives.
|
|
297
|
+
|
|
298
|
+
DEFINITIONS
|
|
299
|
+
"Font Software" refers to the set of files released by the Copyright
|
|
300
|
+
Holder(s) under this license and clearly marked as such. This may
|
|
301
|
+
include source files, build scripts and documentation.
|
|
302
|
+
|
|
303
|
+
"Reserved Font Name" refers to any names specified as such after the
|
|
304
|
+
copyright statement(s).
|
|
305
|
+
|
|
306
|
+
"Original Version" refers to the collection of Font Software components as
|
|
307
|
+
distributed by the Copyright Holder(s).
|
|
308
|
+
|
|
309
|
+
"Modified Version" refers to any derivative made by adding to, deleting,
|
|
310
|
+
or substituting -- in part or in whole -- any of the components of the
|
|
311
|
+
Original Version, by changing formats or by porting the Font Software to a
|
|
312
|
+
new environment.
|
|
313
|
+
|
|
314
|
+
"Author" refers to any designer, engineer, programmer, technical
|
|
315
|
+
writer or other person who contributed to the Font Software.
|
|
316
|
+
|
|
317
|
+
PERMISSION & CONDITIONS
|
|
318
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
319
|
+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
|
320
|
+
redistribute, and sell modified and unmodified copies of the Font
|
|
321
|
+
Software, subject to the following conditions:
|
|
322
|
+
|
|
323
|
+
1) Neither the Font Software nor any of its individual components,
|
|
324
|
+
in Original or Modified Versions, may be sold by itself.
|
|
325
|
+
|
|
326
|
+
2) Original or Modified Versions of the Font Software may be bundled,
|
|
327
|
+
redistributed and/or sold with any software, provided that each copy
|
|
328
|
+
contains the above copyright notice and this license. These can be
|
|
329
|
+
included either as stand-alone text files, human-readable headers or
|
|
330
|
+
in the appropriate machine-readable metadata fields within text or
|
|
331
|
+
binary files as long as those fields can be easily viewed by the user.
|
|
332
|
+
|
|
333
|
+
3) No Modified Version of the Font Software may use the Reserved Font
|
|
334
|
+
Name(s) unless explicit written permission is granted by the corresponding
|
|
335
|
+
Copyright Holder. This restriction only applies to the primary font name as
|
|
336
|
+
presented to the users.
|
|
337
|
+
|
|
338
|
+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
|
339
|
+
Software shall not be used to promote, endorse or advertise any
|
|
340
|
+
Modified Version, except to acknowledge the contribution(s) of the
|
|
341
|
+
Copyright Holder(s) and the Author(s) or with their explicit written
|
|
342
|
+
permission.
|
|
343
|
+
|
|
344
|
+
5) The Font Software, modified or unmodified, in part or in whole,
|
|
345
|
+
must be distributed entirely under this license, and must not be
|
|
346
|
+
distributed under any other license. The requirement for fonts to
|
|
347
|
+
remain under this license does not apply to any document created
|
|
348
|
+
using the Font Software.
|
|
349
|
+
|
|
350
|
+
TERMINATION
|
|
351
|
+
This license becomes null and void if any of the above conditions are
|
|
352
|
+
not met.
|
|
353
|
+
|
|
354
|
+
DISCLAIMER
|
|
355
|
+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
356
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
|
357
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
|
358
|
+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
|
359
|
+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
360
|
+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
|
361
|
+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
362
|
+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
|
363
|
+
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
Binary file
|