Package the portable DSH profiles, local plugins, desktop integration, Firefox wrapper, and ownership-aware installer lifecycle. Bundle checksum-pinned OpenVSCode, editor extensions, translation assets, and cloudflared so unreliable upstream artifact downloads cannot break a clean installation.
8 lines
334 B
JavaScript
8 lines
334 B
JavaScript
import { fileURLToPath } from 'node:url'
|
|
import { installEditorExtensions } from './install-editor-extensions.mjs'
|
|
|
|
export async function installEditorPreferences() {
|
|
await installEditorExtensions(['editor-preferences'])
|
|
}
|
|
|
|
if (process.argv[1] && fileURLToPath(import.meta.url) === process.argv[1]) await installEditorPreferences()
|