mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
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:
parent
57662c1673
commit
3f80470e26
2 changed files with 2 additions and 2 deletions
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
var PROFILE = '@PROFILE@';
|
||||
export const PROFILE = '@PROFILE@';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue