We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d4564f7 + 746df48 commit dd376f4Copy full SHA for dd376f4
apps/repl/app/components/limber/output/compiler/import-map.ts
@@ -38,6 +38,20 @@ export const importMap = {
38
'limber/components/limber/menu': Object.assign(limberMenu.default, limberMenu),
39
'limber/components/limber/header': Object.assign(limberHeader.default, limberHeader),
40
41
+ // Legacy things that don't exist anymore
42
+ 'limber/helpers/state': (...args: unknown[]) => {
43
+ const c = eResources.cell(...args);
44
+
45
+ return {
46
+ ...c,
47
+ // @ts-ignore
48
+ increment: () => c.current++,
49
+ get value() {
50
+ return c.current;
51
+ },
52
+ };
53
54
55
// Libraries
56
'ember-repl': emberRepl,
57
'limber-ui': limberUi,
0 commit comments