Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. const CopyWebpackPlugin = require('copy-webpack-plugin');
  2.  
  3. /**
  4. * Don't forget to import this in your HTML page
  5. * <link rel="stylesheet" type="text/css" href="/tests/jasmine-core/jasmine.css">
  6. * <script type="text/javascript" src="/tests/jasmine-core/jasmine.js"></script>
  7. * <script type="text/javascript" src="/tests/jasmine-core/jasmine-html.js"></script>
  8. * <script type="text/javascript" src="/tests/jasmine-core/boot.js"></script>
  9. *
  10. **/
  11. const config = {
  12. plugins: [
  13. new CopyWebpackPlugin([
  14. {
  15. from: 'node_modules/jasmine-core/lib/jasmine-core/*.*',
  16. to: 'tests/jasmine-core/',
  17. context: '../',
  18. flatten: true,
  19. },
  20. ]),
  21. ],
  22. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement