Skip to content

Commit ea6074b

Browse files
committed
Fix paths
1 parent 84a1fb9 commit ea6074b

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"name": "javascript-ui",
3-
"version": "1.0.5",
4-
"author": "Brandon Jordan (https://github.com/electrikmilk)",
5-
"repository": {
6-
"type": "git",
7-
"url": "https://github.com/electrikmilk/javascript-ui.git"
8-
},
9-
"main": "src/main.js",
10-
"dependencies": {
11-
},
12-
"bugs": {
13-
"url": "https://github.com/electrikmilk/javascript-ui/issues"
14-
},
15-
"keywords": [
16-
"javascript-ui",
17-
"css-in-js",
18-
"swift-ui"
19-
],
20-
"files": [
21-
"src/*"
22-
],
23-
"license": "GPL-2.0-only"
2+
"name": "javascript-ui",
3+
"version": "1.0.5",
4+
"author": "Brandon Jordan (https://github.com/electrikmilk)",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/electrikmilk/javascript-ui.git"
8+
},
9+
"main": "./src/main.js",
10+
"dependencies": {
11+
},
12+
"bugs": {
13+
"url": "https://github.com/electrikmilk/javascript-ui/issues"
14+
},
15+
"keywords": [
16+
"javascript-ui",
17+
"css-in-js",
18+
"swift-ui"
19+
],
20+
"files": [
21+
"src/*"
22+
],
23+
"license": "GPL-2.0-only"
2424
}

src/router.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) 2023 Brandon Jordan
33
*/
44

5-
import {Body, printDebug, view} from "./main";
5+
import {Body, printDebug, view} from './main.js';
66

77
let routes = [];
88
let urlParams = [];

0 commit comments

Comments
 (0)