You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
406 B
11 lines
406 B
2 years ago
|
import { copyWorkboxLibraries } from './lib/copy-workbox-libraries';
|
||
|
import { getModuleURL } from './lib/cdn-utils';
|
||
|
import { generateSW } from './generate-sw';
|
||
|
import { getManifest } from './get-manifest';
|
||
|
import { injectManifest } from './inject-manifest';
|
||
|
/**
|
||
|
* @module workbox-build
|
||
|
*/
|
||
|
export { copyWorkboxLibraries, generateSW, getManifest, getModuleURL, injectManifest, };
|
||
|
export * from './types';
|