Add stream targets

This commit is contained in:
mrjvs
2023-09-10 23:52:51 +02:00
parent a19cd3887f
commit b120b90b02
16 changed files with 106 additions and 21 deletions

View File

@@ -1,5 +1,6 @@
const { makeProviders, makeStandardFetcher } = require('../lib/index.umd.js');
const { makeProviders, makeStandardFetcher, targets } = require('../lib/index.umd.js');
const providers = makeProviders({
fetcher: makeStandardFetcher(fetch),
target: targets.BROWSER,
});

View File

@@ -2,4 +2,5 @@ import { makeProviders, makeStandardFetcher } from '../lib/index.mjs';
const providers = makeProviders({
fetcher: makeStandardFetcher(fetch),
target: targets.BROWSER,
});