UNPKG

592 BPlain TextView Raw
1/*
2 Copyright 2018 Google LLC
3
4 Use of this source code is governed by an MIT-style
5 license that can be found in the LICENSE file or at
6 https://opensource.org/licenses/MIT.
7*/
8
9import {copyWorkboxLibraries} from './lib/copy-workbox-libraries';
10import {getModuleURL} from './lib/cdn-utils';
11import {generateSW} from './generate-sw';
12import {getManifest} from './get-manifest';
13import {injectManifest} from './inject-manifest';
14
15
16/**
17 * @module workbox-build
18 */
19export {
20 copyWorkboxLibraries,
21 generateSW,
22 getManifest,
23 getModuleURL,
24 injectManifest,
25};
26
27export * from './types';