Skip to content

Commit 3f18083

Browse files
authored
Merge pull request #62 from gjsify/fix-relative-import-paths
Hotfix: relative import paths require .js suffix
2 parents 121e040 + 93083e9 commit 3f18083

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

examples/hello-world/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gjsify/gnome-shell-hello-world-example",
3-
"version": "48.0.0",
3+
"version": "48.0.1",
44
"description": "Simple Gnome Shell Hello World Extension example",
55
"type": "module",
66
"main": "dist/extension.js",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gnome-shell",
3-
"version": "48.0.0",
3+
"version": "48.0.1",
44
"description": "GJS TypeScript type definitions for GNOME Shell Extensions",
55
"main": "src/index.js",
66
"type": "module",

packages/gnome-shell/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@girs/gnome-shell",
3-
"version": "48.0.0",
3+
"version": "48.0.1",
44
"description": "GJS TypeScript type definitions for GNOME Shell Extensions",
55
"type": "module",
66
"main": "./dist/index.js",

packages/gnome-shell/src/ui/messageList.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import type Gio from '@girs/gio-2.0';
55
import type GLib from '@girs/glib-2.0';
66
import type St from '@girs/st-16';
77
import type Clutter from '@girs/clutter-16';
8-
import type { Notification } from './messageTray';
9-
import type { MprisPlayer, MprisSource } from './mpris';
8+
import type { Notification } from './messageTray.js';
9+
import type { MprisPlayer, MprisSource } from './mpris.js';
1010

1111
/**
1212
* @see https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/main/js/ui/messageList.js#L33

packages/gnome-shell/src/ui/windowManager.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import type Meta from 'gi://Meta';
66
import type Shell from 'gi://Shell';
77
import type St from '@girs/st-16';
88
import type Mtk from '@girs/mtk-16';
9-
import type { Monitor } from './layout';
10-
import type { Workspace } from './workspace';
9+
import type { Monitor } from './layout.js';
10+
import type { Workspace } from './workspace.js';
1111

1212
/**
1313
* @see https://gitlab.gnome.org/GNOME/gnome-shell/-/blob/main/js/ui/windowManager.js#L28

0 commit comments

Comments
 (0)