@dxos/plugin-pwa 0.8.4-main.ae835ea → 0.8.4-main.bc674ce

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,8 +10,9 @@ var meta = {
10
10
  };
11
11
 
12
12
  // src/PwaPlugin.tsx
13
+ import * as Effect from "effect/Effect";
13
14
  import { registerSW } from "virtual:pwa-register";
14
- import { Capabilities, Events, LayoutAction, contributes, createIntent, defineModule, definePlugin } from "@dxos/app-framework";
15
+ import { Capability, Common, Plugin } from "@dxos/app-framework";
15
16
  import { log } from "@dxos/log";
16
17
  import { captureException } from "@dxos/observability/sentry";
17
18
 
@@ -35,82 +36,74 @@ var translations = [
35
36
 
36
37
  // src/PwaPlugin.tsx
37
38
  var __dxlog_file = "/__w/dxos/dxos/packages/plugins/plugin-pwa/src/PwaPlugin.tsx";
38
- var PwaPlugin = definePlugin(meta, () => [
39
- defineModule({
40
- id: `${meta.id}/module/translations`,
41
- activatesOn: Events.SetupTranslations,
42
- activate: () => contributes(Capabilities.Translations, translations)
43
- }),
44
- defineModule({
45
- id: `${meta.id}/module/register-pwa`,
46
- activatesOn: Events.DispatcherReady,
47
- activate: (context) => {
48
- const { dispatchPromise: dispatch } = context.getCapability(Capabilities.IntentDispatcher);
49
- const updateSW = registerSW({
50
- onNeedRefresh: () => dispatch?.(createIntent(LayoutAction.AddToast, {
51
- part: "toast",
52
- subject: {
53
- id: `${meta.id}/need-refresh`,
54
- title: [
55
- "need refresh label",
56
- {
57
- ns: meta.id
58
- }
59
- ],
60
- description: [
61
- "need refresh description",
62
- {
63
- ns: meta.id
64
- }
65
- ],
66
- duration: 4 * 60 * 1e3,
67
- actionLabel: [
68
- "refresh label",
69
- {
70
- ns: meta.id
71
- }
72
- ],
73
- actionAlt: [
74
- "refresh alt",
75
- {
76
- ns: meta.id
77
- }
78
- ],
79
- onAction: () => updateSW(true)
80
- }
81
- })),
82
- onOfflineReady: () => dispatch?.(createIntent(LayoutAction.AddToast, {
83
- part: "toast",
84
- subject: {
85
- id: `${meta.id}/offline-ready`,
86
- title: [
87
- "offline ready label",
88
- {
89
- ns: meta.id
90
- }
91
- ],
92
- closeLabel: [
93
- "confirm label",
94
- {
95
- ns: meta.id
96
- }
97
- ]
98
- }
99
- })),
100
- onRegisterError: (err) => {
101
- captureException(err);
102
- log.error(err, void 0, {
103
- F: __dxlog_file,
104
- L: 63,
105
- S: void 0,
106
- C: (f, a) => f(...a)
107
- });
108
- }
109
- });
110
- return contributes(Capabilities.Null, null);
111
- }
39
+ var PwaPlugin = Plugin.define(meta).pipe(Common.Plugin.addTranslationsModule({
40
+ translations
41
+ }), Plugin.addModule({
42
+ id: "register-pwa",
43
+ activatesOn: Common.ActivationEvent.OperationInvokerReady,
44
+ activate: Effect.fnUntraced(function* () {
45
+ const { invokeSync } = yield* Capability.get(Common.Capability.OperationInvoker);
46
+ const updateSW = registerSW({
47
+ onNeedRefresh: () => {
48
+ invokeSync(Common.LayoutOperation.AddToast, {
49
+ id: `${meta.id}/need-refresh`,
50
+ title: [
51
+ "need refresh label",
52
+ {
53
+ ns: meta.id
54
+ }
55
+ ],
56
+ description: [
57
+ "need refresh description",
58
+ {
59
+ ns: meta.id
60
+ }
61
+ ],
62
+ duration: 4 * 60 * 1e3,
63
+ actionLabel: [
64
+ "refresh label",
65
+ {
66
+ ns: meta.id
67
+ }
68
+ ],
69
+ actionAlt: [
70
+ "refresh alt",
71
+ {
72
+ ns: meta.id
73
+ }
74
+ ],
75
+ onAction: () => updateSW(true)
76
+ });
77
+ },
78
+ onOfflineReady: () => {
79
+ invokeSync(Common.LayoutOperation.AddToast, {
80
+ id: `${meta.id}/offline-ready`,
81
+ title: [
82
+ "offline ready label",
83
+ {
84
+ ns: meta.id
85
+ }
86
+ ],
87
+ closeLabel: [
88
+ "confirm label",
89
+ {
90
+ ns: meta.id
91
+ }
92
+ ]
93
+ });
94
+ },
95
+ onRegisterError: (err) => {
96
+ captureException(err);
97
+ log.error(err, void 0, {
98
+ F: __dxlog_file,
99
+ L: 44,
100
+ S: this,
101
+ C: (f, a) => f(...a)
102
+ });
103
+ }
104
+ });
112
105
  })
113
- ]);
106
+ }), Plugin.make);
114
107
  export {
115
108
  PwaPlugin,
116
109
  meta
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/meta.ts", "../../../src/PwaPlugin.tsx", "../../../src/translations.ts"],
4
- "sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type PluginMeta } from '@dxos/app-framework';\nimport { trim } from '@dxos/util';\n\nexport const meta: PluginMeta = {\n id: 'dxos.org/plugin/pwa',\n name: 'PWA',\n description: trim`\n Progressive Web App capabilities enabling offline functionality and app-like experience.\n Install to home screen and use the workspace without internet connection.\n `,\n};\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport { registerSW } from 'virtual:pwa-register';\n\nimport {\n Capabilities,\n Events,\n LayoutAction,\n contributes,\n createIntent,\n defineModule,\n definePlugin,\n} from '@dxos/app-framework';\nimport { log } from '@dxos/log';\nimport { captureException } from '@dxos/observability/sentry';\n\nimport { meta } from './meta';\nimport { translations } from './translations';\n\nexport const PwaPlugin = definePlugin(meta, () => [\n defineModule({\n id: `${meta.id}/module/translations`,\n activatesOn: Events.SetupTranslations,\n activate: () => contributes(Capabilities.Translations, translations),\n }),\n defineModule({\n id: `${meta.id}/module/register-pwa`,\n activatesOn: Events.DispatcherReady,\n activate: (context) => {\n const { dispatchPromise: dispatch } = context.getCapability(Capabilities.IntentDispatcher);\n\n const updateSW = registerSW({\n onNeedRefresh: () =>\n dispatch?.(\n createIntent(LayoutAction.AddToast, {\n part: 'toast',\n subject: {\n id: `${meta.id}/need-refresh`,\n title: ['need refresh label', { ns: meta.id }],\n description: ['need refresh description', { ns: meta.id }],\n duration: 4 * 60 * 1000, // 4m\n actionLabel: ['refresh label', { ns: meta.id }],\n actionAlt: ['refresh alt', { ns: meta.id }],\n onAction: () => updateSW(true),\n },\n }),\n ),\n onOfflineReady: () =>\n dispatch?.(\n createIntent(LayoutAction.AddToast, {\n part: 'toast',\n subject: {\n id: `${meta.id}/offline-ready`,\n title: ['offline ready label', { ns: meta.id }],\n closeLabel: ['confirm label', { ns: meta.id }],\n },\n }),\n ),\n onRegisterError: (err) => {\n captureException(err);\n log.error(err);\n },\n });\n\n return contributes(Capabilities.Null, null);\n },\n }),\n]);\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport { type Resource } from '@dxos/react-ui';\n\nimport { meta } from './meta';\n\nexport const translations = [\n {\n 'en-US': {\n [meta.id]: {\n 'need refresh label': 'Refresh now to get app updates',\n 'need refresh description': 'You’ll need these updates to continue without interruption.',\n 'refresh label': 'Refresh',\n 'refresh alt': 'Click your browser’s refresh button or use the refresh keyboard shortcut.',\n // TODO(wittjosiah): Non-react translation utils.\n // 'offline ready label': '{{appName}} is ready to use offline.',\n 'offline ready label': 'Ready to use offline.',\n 'confirm label': 'Okay',\n },\n },\n },\n] as const satisfies Resource[];\n"],
5
- "mappings": ";AAKA,SAASA,YAAY;AAEd,IAAMC,OAAmB;EAC9BC,IAAI;EACJC,MAAM;EACNC,aAAaC;;;;AAIf;;;ACVA,SAASC,kBAAkB;AAE3B,SACEC,cACAC,QACAC,cACAC,aACAC,cACAC,cACAC,oBACK;AACP,SAASC,WAAW;AACpB,SAASC,wBAAwB;;;ACR1B,IAAMC,eAAe;EAC1B;IACE,SAAS;MACP,CAACC,KAAKC,EAAE,GAAG;QACT,sBAAsB;QACtB,4BAA4B;QAC5B,iBAAiB;QACjB,eAAe;;;QAGf,uBAAuB;QACvB,iBAAiB;MACnB;IACF;EACF;;;;;ADDK,IAAMC,YAAYC,aAAaC,MAAM,MAAM;EAChDC,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;IACdC,aAAaC,OAAOC;IACpBC,UAAU,MAAMC,YAAYC,aAAaC,cAAcC,YAAAA;EACzD,CAAA;EACAT,aAAa;IACXC,IAAI,GAAGF,KAAKE,EAAE;IACdC,aAAaC,OAAOO;IACpBL,UAAU,CAACM,YAAAA;AACT,YAAM,EAAEC,iBAAiBC,SAAQ,IAAKF,QAAQG,cAAcP,aAAaQ,gBAAgB;AAEzF,YAAMC,WAAWC,WAAW;QAC1BC,eAAe,MACbL,WACEM,aAAaC,aAAaC,UAAU;UAClCC,MAAM;UACNC,SAAS;YACPtB,IAAI,GAAGF,KAAKE,EAAE;YACduB,OAAO;cAAC;cAAsB;gBAAEC,IAAI1B,KAAKE;cAAG;;YAC5CyB,aAAa;cAAC;cAA4B;gBAAED,IAAI1B,KAAKE;cAAG;;YACxD0B,UAAU,IAAI,KAAK;YACnBC,aAAa;cAAC;cAAiB;gBAAEH,IAAI1B,KAAKE;cAAG;;YAC7C4B,WAAW;cAAC;cAAe;gBAAEJ,IAAI1B,KAAKE;cAAG;;YACzC6B,UAAU,MAAMd,SAAS,IAAA;UAC3B;QACF,CAAA,CAAA;QAEJe,gBAAgB,MACdlB,WACEM,aAAaC,aAAaC,UAAU;UAClCC,MAAM;UACNC,SAAS;YACPtB,IAAI,GAAGF,KAAKE,EAAE;YACduB,OAAO;cAAC;cAAuB;gBAAEC,IAAI1B,KAAKE;cAAG;;YAC7C+B,YAAY;cAAC;cAAiB;gBAAEP,IAAI1B,KAAKE;cAAG;;UAC9C;QACF,CAAA,CAAA;QAEJgC,iBAAiB,CAACC,QAAAA;AAChBC,2BAAiBD,GAAAA;AACjBE,cAAIC,MAAMH,KAAAA,QAAAA;;;;;;QACZ;MACF,CAAA;AAEA,aAAO5B,YAAYC,aAAa+B,MAAM,IAAA;IACxC;EACF,CAAA;CACD;",
6
- "names": ["trim", "meta", "id", "name", "description", "trim", "registerSW", "Capabilities", "Events", "LayoutAction", "contributes", "createIntent", "defineModule", "definePlugin", "log", "captureException", "translations", "meta", "id", "PwaPlugin", "definePlugin", "meta", "defineModule", "id", "activatesOn", "Events", "SetupTranslations", "activate", "contributes", "Capabilities", "Translations", "translations", "DispatcherReady", "context", "dispatchPromise", "dispatch", "getCapability", "IntentDispatcher", "updateSW", "registerSW", "onNeedRefresh", "createIntent", "LayoutAction", "AddToast", "part", "subject", "title", "ns", "description", "duration", "actionLabel", "actionAlt", "onAction", "onOfflineReady", "closeLabel", "onRegisterError", "err", "captureException", "log", "error", "Null"]
4
+ "sourcesContent": ["//\n// Copyright 2023 DXOS.org\n//\n\nimport { type Plugin } from '@dxos/app-framework';\nimport { trim } from '@dxos/util';\n\nexport const meta: Plugin.Meta = {\n id: 'dxos.org/plugin/pwa',\n name: 'PWA',\n description: trim`\n Progressive Web App capabilities enabling offline functionality and app-like experience.\n Install to home screen and use the workspace without internet connection.\n `,\n};\n", "//\n// Copyright 2023 DXOS.org\n//\n\nimport * as Effect from 'effect/Effect';\nimport { registerSW } from 'virtual:pwa-register';\n\nimport { Capability, Common, Plugin } from '@dxos/app-framework';\nimport { log } from '@dxos/log';\nimport { captureException } from '@dxos/observability/sentry';\n\nimport { meta } from './meta';\nimport { translations } from './translations';\n\nexport const PwaPlugin = Plugin.define(meta).pipe(\n Common.Plugin.addTranslationsModule({ translations }),\n Plugin.addModule({\n id: 'register-pwa',\n activatesOn: Common.ActivationEvent.OperationInvokerReady,\n activate: Effect.fnUntraced(function* () {\n const { invokeSync } = yield* Capability.get(Common.Capability.OperationInvoker);\n\n const updateSW = registerSW({\n onNeedRefresh: () => {\n invokeSync(Common.LayoutOperation.AddToast, {\n id: `${meta.id}/need-refresh`,\n title: ['need refresh label', { ns: meta.id }],\n description: ['need refresh description', { ns: meta.id }],\n duration: 4 * 60 * 1000, // 4m\n actionLabel: ['refresh label', { ns: meta.id }],\n actionAlt: ['refresh alt', { ns: meta.id }],\n onAction: () => updateSW(true),\n });\n },\n onOfflineReady: () => {\n invokeSync(Common.LayoutOperation.AddToast, {\n id: `${meta.id}/offline-ready`,\n title: ['offline ready label', { ns: meta.id }],\n closeLabel: ['confirm label', { ns: meta.id }],\n });\n },\n onRegisterError: (err) => {\n captureException(err);\n log.error(err);\n },\n });\n }),\n }),\n Plugin.make,\n);\n", "//\n// Copyright 2022 DXOS.org\n//\n\nimport { type Resource } from '@dxos/react-ui';\n\nimport { meta } from './meta';\n\nexport const translations = [\n {\n 'en-US': {\n [meta.id]: {\n 'need refresh label': 'Refresh now to get app updates',\n 'need refresh description': 'You’ll need these updates to continue without interruption.',\n 'refresh label': 'Refresh',\n 'refresh alt': 'Click your browser’s refresh button or use the refresh keyboard shortcut.',\n // TODO(wittjosiah): Non-react translation utils.\n // 'offline ready label': '{{appName}} is ready to use offline.',\n 'offline ready label': 'Ready to use offline.',\n 'confirm label': 'Okay',\n },\n },\n },\n] as const satisfies Resource[];\n"],
5
+ "mappings": ";AAKA,SAASA,YAAY;AAEd,IAAMC,OAAoB;EAC/BC,IAAI;EACJC,MAAM;EACNC,aAAaC;;;;AAIf;;;ACVA,YAAYC,YAAY;AACxB,SAASC,kBAAkB;AAE3B,SAASC,YAAYC,QAAQC,cAAc;AAC3C,SAASC,WAAW;AACpB,SAASC,wBAAwB;;;ACD1B,IAAMC,eAAe;EAC1B;IACE,SAAS;MACP,CAACC,KAAKC,EAAE,GAAG;QACT,sBAAsB;QACtB,4BAA4B;QAC5B,iBAAiB;QACjB,eAAe;;;QAGf,uBAAuB;QACvB,iBAAiB;MACnB;IACF;EACF;;;;;ADRK,IAAMC,YAAYC,OAAOC,OAAOC,IAAAA,EAAMC,KAC3CC,OAAOJ,OAAOK,sBAAsB;EAAEC;AAAa,CAAA,GACnDN,OAAOO,UAAU;EACfC,IAAI;EACJC,aAAaL,OAAOM,gBAAgBC;EACpCC,UAAiBC,kBAAW,aAAA;AAC1B,UAAM,EAAEC,WAAU,IAAK,OAAOC,WAAWC,IAAIZ,OAAOW,WAAWE,gBAAgB;AAE/E,UAAMC,WAAWC,WAAW;MAC1BC,eAAe,MAAA;AACbN,mBAAWV,OAAOiB,gBAAgBC,UAAU;UAC1Cd,IAAI,GAAGN,KAAKM,EAAE;UACde,OAAO;YAAC;YAAsB;cAAEC,IAAItB,KAAKM;YAAG;;UAC5CiB,aAAa;YAAC;YAA4B;cAAED,IAAItB,KAAKM;YAAG;;UACxDkB,UAAU,IAAI,KAAK;UACnBC,aAAa;YAAC;YAAiB;cAAEH,IAAItB,KAAKM;YAAG;;UAC7CoB,WAAW;YAAC;YAAe;cAAEJ,IAAItB,KAAKM;YAAG;;UACzCqB,UAAU,MAAMX,SAAS,IAAA;QAC3B,CAAA;MACF;MACAY,gBAAgB,MAAA;AACdhB,mBAAWV,OAAOiB,gBAAgBC,UAAU;UAC1Cd,IAAI,GAAGN,KAAKM,EAAE;UACde,OAAO;YAAC;YAAuB;cAAEC,IAAItB,KAAKM;YAAG;;UAC7CuB,YAAY;YAAC;YAAiB;cAAEP,IAAItB,KAAKM;YAAG;;QAC9C,CAAA;MACF;MACAwB,iBAAiB,CAACC,QAAAA;AAChBC,yBAAiBD,GAAAA;AACjBE,YAAIC,MAAMH,KAAAA,QAAAA;;;;;;MACZ;IACF,CAAA;EACF,CAAA;AACF,CAAA,GACAjC,OAAOqC,IAAI;",
6
+ "names": ["trim", "meta", "id", "name", "description", "trim", "Effect", "registerSW", "Capability", "Common", "Plugin", "log", "captureException", "translations", "meta", "id", "PwaPlugin", "Plugin", "define", "meta", "pipe", "Common", "addTranslationsModule", "translations", "addModule", "id", "activatesOn", "ActivationEvent", "OperationInvokerReady", "activate", "fnUntraced", "invokeSync", "Capability", "get", "OperationInvoker", "updateSW", "registerSW", "onNeedRefresh", "LayoutOperation", "AddToast", "title", "ns", "description", "duration", "actionLabel", "actionAlt", "onAction", "onOfflineReady", "closeLabel", "onRegisterError", "err", "captureException", "log", "error", "make"]
7
7
  }
@@ -1 +1 @@
1
- {"inputs":{"src/meta.ts":{"bytes":1387,"imports":[{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/translations.ts":{"bytes":2456,"imports":[{"path":"src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"src/PwaPlugin.tsx":{"bytes":9497,"imports":[{"path":"virtual:pwa-register","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/observability/sentry","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/translations.ts","kind":"import-statement","original":"./translations"}],"format":"esm"},"src/index.ts":{"bytes":535,"imports":[{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/PwaPlugin.tsx","kind":"import-statement","original":"./PwaPlugin"}],"format":"esm"}},"outputs":{"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5716},"dist/lib/browser/index.mjs":{"imports":[{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"virtual:pwa-register","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/observability/sentry","kind":"import-statement","external":true}],"exports":["PwaPlugin","meta"],"entryPoint":"src/index.ts","inputs":{"src/meta.ts":{"bytesInOutput":291},"src/index.ts":{"bytesInOutput":0},"src/PwaPlugin.tsx":{"bytesInOutput":2421},"src/translations.ts":{"bytesInOutput":609}},"bytes":3471}}}
1
+ {"inputs":{"src/meta.ts":{"bytes":1383,"imports":[{"path":"@dxos/util","kind":"import-statement","external":true}],"format":"esm"},"src/translations.ts":{"bytes":2456,"imports":[{"path":"src/meta.ts","kind":"import-statement","original":"./meta"}],"format":"esm"},"src/PwaPlugin.tsx":{"bytes":7645,"imports":[{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"virtual:pwa-register","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/observability/sentry","kind":"import-statement","external":true},{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/translations.ts","kind":"import-statement","original":"./translations"}],"format":"esm"},"src/index.ts":{"bytes":535,"imports":[{"path":"src/meta.ts","kind":"import-statement","original":"./meta"},{"path":"src/PwaPlugin.tsx","kind":"import-statement","original":"./PwaPlugin"}],"format":"esm"}},"outputs":{"dist/lib/browser/index.mjs.map":{"imports":[],"exports":[],"inputs":{},"bytes":5051},"dist/lib/browser/index.mjs":{"imports":[{"path":"@dxos/util","kind":"import-statement","external":true},{"path":"effect/Effect","kind":"import-statement","external":true},{"path":"virtual:pwa-register","kind":"import-statement","external":true},{"path":"@dxos/app-framework","kind":"import-statement","external":true},{"path":"@dxos/log","kind":"import-statement","external":true},{"path":"@dxos/observability/sentry","kind":"import-statement","external":true}],"exports":["PwaPlugin","meta"],"entryPoint":"src/index.ts","inputs":{"src/meta.ts":{"bytesInOutput":291},"src/index.ts":{"bytesInOutput":0},"src/PwaPlugin.tsx":{"bytesInOutput":2042},"src/translations.ts":{"bytesInOutput":609}},"bytes":3092}}}
@@ -1,2 +1,3 @@
1
- export declare const PwaPlugin: import("@dxos/app-framework").PluginFactory<void>;
1
+ import { Plugin } from '@dxos/app-framework';
2
+ export declare const PwaPlugin: Plugin.PluginFactory<void>;
2
3
  //# sourceMappingURL=PwaPlugin.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"PwaPlugin.d.ts","sourceRoot":"","sources":["../../../src/PwaPlugin.tsx"],"names":[],"mappings":"AAqBA,eAAO,MAAM,SAAS,mDAgDpB,CAAC"}
1
+ {"version":3,"file":"PwaPlugin.d.ts","sourceRoot":"","sources":["../../../src/PwaPlugin.tsx"],"names":[],"mappings":"AAOA,OAAO,EAAsB,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAOjE,eAAO,MAAM,SAAS,4BAmCrB,CAAC"}
@@ -1,3 +1,3 @@
1
- import { type PluginMeta } from '@dxos/app-framework';
2
- export declare const meta: PluginMeta;
1
+ import { type Plugin } from '@dxos/app-framework';
2
+ export declare const meta: Plugin.Meta;
3
3
  //# sourceMappingURL=meta.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"meta.d.ts","sourceRoot":"","sources":["../../../src/meta.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAGtD,eAAO,MAAM,IAAI,EAAE,UAOlB,CAAC"}
1
+ {"version":3,"file":"meta.d.ts","sourceRoot":"","sources":["../../../src/meta.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,KAAK,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAGlD,eAAO,MAAM,IAAI,EAAE,MAAM,CAAC,IAOzB,CAAC"}