xref: /webtrees/webpack.mix.js (revision ad7270802ba57a28d195fc58fcc55f26458a779a)
1*ad727080SGreg Roachlet mix  = require("laravel-mix");
227c4cda0SGreg Roach
327c4cda0SGreg Roachmix
427c4cda0SGreg Roach    .autoload({
5*ad727080SGreg Roach        jquery: ["$", "jQuery"],
627c4cda0SGreg Roach    })
7*ad727080SGreg Roach    .js("resources/js/vendor.js", "public/js/vendor.min.js")
8*ad727080SGreg Roach    .babel("resources/js/webtrees.js", "public/js/webtrees.min.js")
927c4cda0SGreg Roach    .sourceMaps()
10*ad727080SGreg Roach    .copy("node_modules//dejavu-fonts-ttf/ttf/DejaVuSans.ttf", "resources/fonts/")
11*ad727080SGreg Roach    .styles("resources/css/administration.css", "public/css/administration.min.css")
1227c4cda0SGreg Roach    .styles([
13*ad727080SGreg Roach        "node_modules/bootstrap/dist/css/bootstrap.min.css",
14*ad727080SGreg Roach        "node_modules/datatables.net-bs4/css/dataTables.bootstrap4.css",
15*ad727080SGreg Roach        "node_modules/@fortawesome/fontawesome-free/css/regular.css",
16*ad727080SGreg Roach        "node_modules/@fortawesome/fontawesome-free/css/solid.css",
17*ad727080SGreg Roach        "node_modules/@fortawesome/fontawesome-free/css/fontawesome.css",
18*ad727080SGreg Roach        "node_modules/font-awesome-rtl/font-awesome-rtl.css",
19*ad727080SGreg Roach        "node_modules/select2/dist/css/select2.min.css",
20*ad727080SGreg Roach        "node_modules/typeahead.js-bootstrap4-css/typeaheadjs.css",
21*ad727080SGreg Roach        "node_modules/leaflet/dist/leaflet.css",
22*ad727080SGreg Roach        "node_modules/beautifymarker/leaflet-beautify-marker-icon.css",
23*ad727080SGreg Roach        "node_modules/leaflet-geosearch/dist/style.css",
24*ad727080SGreg Roach        "node_modules/leaflet.markercluster/dist/MarkerCluster.Default.css",
25*ad727080SGreg Roach        "node_modules/leaflet.markercluster/dist/MarkerCluster.css",
26*ad727080SGreg Roach    ], "public/css/vendor.min.css")
2727c4cda0SGreg Roach    .styles([
28*ad727080SGreg Roach        "resources/css/bootstrap-rtl.min.css",
29*ad727080SGreg Roach        "node_modules/datatables.net-bs4/css/dataTables.bootstrap4.css",
30*ad727080SGreg Roach        "node_modules/font-awesome/css/font-awesome.css",
31*ad727080SGreg Roach        "node_modules/@fortawesome/fontawesome-free/css/regular.css",
32*ad727080SGreg Roach        "node_modules/@fortawesome/fontawesome-free/css/solid.css",
33*ad727080SGreg Roach        "node_modules/@fortawesome/fontawesome-free/css/fontawesome.css",
34*ad727080SGreg Roach        "node_modules/font-awesome-rtl/font-awesome-rtl.css",
35*ad727080SGreg Roach        "node_modules/select2/dist/css/select2.min.css",
36*ad727080SGreg Roach        "node_modules/typeahead.js-bootstrap4-css/typeaheadjs.css",
37*ad727080SGreg Roach        "node_modules/leaflet/dist/leaflet.css",
38*ad727080SGreg Roach        "node_modules/beautifymarker/leaflet-beautify-marker-icon.css",
39*ad727080SGreg Roach        "node_modules/leaflet-geosearch/dist/style.css",
40*ad727080SGreg Roach        "node_modules/leaflet.markercluster/dist/MarkerCluster.Default.css",
41*ad727080SGreg Roach        "node_modules/leaflet.markercluster/dist/MarkerCluster.css",
42*ad727080SGreg Roach    ], "public/css/vendor-rtl.min.css")
43*ad727080SGreg Roach    .copy("node_modules/@fortawesome/fontawesome-free/webfonts/*", "public/webfonts/")
44*ad727080SGreg Roach    .copy("node_modules/leaflet/dist/images/*", "public/css/images/");
45