1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Fix import of merge util in 'watch.js'

The `merge` function is provided by 'utils/index.js'.
This commit is contained in:
Chauncey McAskill
2023-03-03 13:07:47 -05:00
parent 1ee315663e
commit 7be5e48f22

View File

@@ -2,10 +2,11 @@ import concatFiles, { developmentConcatFilesArgs } from './tasks/concats.js';
import compileScripts, { developmentScriptsArgs } from './tasks/scripts.js'; import compileScripts, { developmentScriptsArgs } from './tasks/scripts.js';
import compileStyles, { developmentStylesArgs } from './tasks/styles.js' ; import compileStyles, { developmentStylesArgs } from './tasks/styles.js' ;
import compileSVGs, { developmentSVGsArgs } from './tasks/svgs.js'; import compileSVGs, { developmentSVGsArgs } from './tasks/svgs.js';
import loconfig, { merge } from './helpers/config.js'; import loconfig from './helpers/config.js';
import message from './helpers/message.js'; import message from './helpers/message.js';
import notification from './helpers/notification.js'; import notification from './helpers/notification.js';
import resolve from './helpers/template.js'; import resolve from './helpers/template.js';
import { merge } from './utils/index.js';
import browserSync from 'browser-sync'; import browserSync from 'browser-sync';
import { join } from 'node:path'; import { join } from 'node:path';