index.js 392 B

123456789101112131415161718192021
  1. "use strict";
  2. /*
  3. Copyright 2018 Google LLC
  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. const GenerateSW = require('./generate-sw');
  9. const InjectManifest = require('./inject-manifest');
  10. /**
  11. * @module workbox-webpack-plugin
  12. */
  13. module.exports = {
  14. GenerateSW,
  15. InjectManifest
  16. };