Astro+Directus(Visual-Editing)+Snipcart Test-Stack
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"diagnostics-channel-browser.d.ts","sourceRoot":"","sources":["../../../src/diagnostics-channel-browser.ts"],"names":[],"mappings":"AAEA,OAAO,EACL,KAAK,OAAO,EACZ,KAAK,cAAc,EACpB,MAAM,0BAA0B,CAAA;AACjC,YAAY,EAAE,cAAc,EAAE,OAAO,EAAE,CAAA;AAGvC,eAAO,MAAM,OAAO,EAAY,OAAO,CAAC,OAAO,CAAC,CAAA;AAChD,eAAO,MAAM,OAAO,EAAY,cAAc,CAAC,OAAO,CAAC,CAAA"}
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"diagnostics-channel-browser.js","sourceRoot":"","sources":["../../../src/diagnostics-channel-browser.ts"],"names":[],"mappings":"AAQA,MAAM,KAAK,GAAG,EAAE,cAAc,EAAE,KAAK,EAAE,CAAA;AACvC,MAAM,CAAC,MAAM,OAAO,GAAG,KAAyB,CAAA;AAChD,MAAM,CAAC,MAAM,OAAO,GAAG,KAAgC,CAAA","sourcesContent":["// this is used in ESM environments that follow the 'browser' import\n// condition, to avoid even trying to load node:diagnostics_channel\nimport {\n type Channel,\n type TracingChannel,\n} from 'node:diagnostics_channel'\nexport type { TracingChannel, Channel }\n\nconst dummy = { hasSubscribers: false }\nexport const metrics = dummy as Channel<unknown>\nexport const tracing = dummy as TracingChannel<unknown>\n"]}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import { type Channel, type TracingChannel } from 'node:diagnostics_channel';
|
||||
export type { TracingChannel, Channel };
|
||||
export declare const metrics: Channel<unknown>;
|
||||
export declare const tracing: TracingChannel<unknown>;
|
||||
//# sourceMappingURL=diagnostics-channel-browser.d.ts.map
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
const dummy = { hasSubscribers: false };
|
||||
export const metrics = dummy;
|
||||
export const tracing = dummy;
|
||||
//# sourceMappingURL=diagnostics-channel-browser.js.map
|
||||
+1400
File diff suppressed because it is too large
Load Diff
+1
File diff suppressed because one or more lines are too long
+1722
File diff suppressed because it is too large
Load Diff
+1
File diff suppressed because one or more lines are too long
+2
File diff suppressed because one or more lines are too long
+7
File diff suppressed because one or more lines are too long
+12
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* this provides the default Perf object source, either the
|
||||
* `performance` global, or the `Date` constructor.
|
||||
*
|
||||
* it can be passed in via configuration to override it
|
||||
* for a single LRU object.
|
||||
*/
|
||||
export type Perf = {
|
||||
now: () => number;
|
||||
};
|
||||
export declare const defaultPerf: Perf;
|
||||
//# sourceMappingURL=perf.d.ts.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"perf.d.ts","sourceRoot":"","sources":["../../../src/perf.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,MAAM,MAAM,IAAI,GAAG;IAAE,GAAG,EAAE,MAAM,MAAM,CAAA;CAAE,CAAA;AACxC,eAAO,MAAM,WAAW,EAAE,IAQG,CAAA"}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
export const defaultPerf = (typeof performance === 'object' &&
|
||||
performance &&
|
||||
typeof performance.now === 'function') ?
|
||||
/* c8 ignore start - this gets covered, but c8 gets confused */
|
||||
performance
|
||||
: /* c8 ignore stop */ Date;
|
||||
//# sourceMappingURL=perf.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"perf.js","sourceRoot":"","sources":["../../../src/perf.ts"],"names":[],"mappings":"AAQA,MAAM,CAAC,MAAM,WAAW,GACtB,CACE,OAAO,WAAW,KAAK,QAAQ;IAC/B,WAAW;IACX,OAAO,WAAW,CAAC,GAAG,KAAK,UAAU,CACtC,CAAC,CAAC;IACD,+DAA+D;IAC/D,WAAW;IACb,CAAC,CAAC,oBAAoB,CAAC,IAAI,CAAA","sourcesContent":["/**\n * this provides the default Perf object source, either the\n * `performance` global, or the `Date` constructor.\n *\n * it can be passed in via configuration to override it\n * for a single LRU object.\n */\nexport type Perf = { now: () => number }\nexport const defaultPerf: Perf =\n (\n typeof performance === 'object' &&\n performance &&\n typeof performance.now === 'function'\n ) ?\n /* c8 ignore start - this gets covered, but c8 gets confused */\n performance\n : /* c8 ignore stop */ Date\n"]}
|
||||
Reference in New Issue
Block a user