Skip to content

Commit 0e11237

Browse files
author
Frank van Viegen
committed
keyed/aberdeen: use npm package
1 parent 2f5872e commit 0e11237

File tree

5 files changed

+497
-10
lines changed

5 files changed

+497
-10
lines changed

frameworks/keyed/aberdeen/idiomatic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {$, copy, ref, proxy, onEach} from "./dist-min/aberdeen.js";
1+
import {$, copy, ref, proxy, onEach} from "aberdeen.js";
22
import { buildData } from "./build-dummy-data.js";
33

44
const data = proxy([]); // [{id, label}, ...]

frameworks/keyed/aberdeen/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Aberdeen-"keyed"</title>
77
<link href="/css/currentStyle.css" rel="stylesheet" />
8-
<script type="module" src="main.js"></script>
8+
<script type="module" src="dist/main.js"></script>
99
</head>
1010
<body>
1111
</body>

frameworks/keyed/aberdeen/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* The idiomatic implementation (with very slow deletes) is in `idiomatic.js`.
1313
*/
1414

15-
import {$, copy, ref, proxy, onEach} from "./dist/aberdeen.js";
15+
import {$, copy, ref, proxy, onEach} from "aberdeen";
1616
import { buildData } from "./build-dummy-data.js";
1717

1818
const unproxiedData = []; // [{id, label}, ...]

0 commit comments

Comments
 (0)