extensions-app: Port config to ESM

The app uses a different Config module than the rest of the code
base, so we can port it separately.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2868>
This commit is contained in:
Florian Müllner 2023-08-07 17:18:13 +02:00 committed by Marge Bot
parent 57662c1673
commit 3f80470e26
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ const Package = imports.package;
Package.initFormat();
const Config = imports.misc.config;
import * as Config from './misc/config.js';
import * as ExtensionUtils from './misc/extensionUtils.js';
import {ExtensionState, ExtensionType} from './misc/extensionUtils.js';

View File

@ -1 +1 @@
var PROFILE = '@PROFILE@';
export const PROFILE = '@PROFILE@';