Changed import of paths
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Jim Martens 2023-07-21 21:15:12 +02:00
parent 511e439637
commit 6aafaaacae
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
// paths.js file
let paths = {};
const paths = {};
// Directory locations.
paths.assetsDir = "_assets/"; // The files Gulp will handle.
@ -70,4 +70,4 @@ paths.sprocketsDirs = {
images: []
};
module.exports = paths;
export {paths};

View File

@ -19,7 +19,7 @@ import sourcemaps from "gulp-sourcemaps";
import terser from "gulp-terser";
// Include paths file.
import * as paths from "./_assets/gulp_config/paths";
import {paths} from "_assets/gulp_config/paths";
import {render} from "node-sass";
const browserSync = create("gulpfile");