From a6f905b71cf9962df78e6b7feebf69d4b1412a24 Mon Sep 17 00:00:00 2001 From: Pagan Gazzard Date: Mon, 25 May 2020 15:35:03 +0100 Subject: [PATCH] Fix lazy loading in utils/compose Change-type: patch --- lib/utils/compose.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/utils/compose.js b/lib/utils/compose.js index fbea6d91..a496794a 100644 --- a/lib/utils/compose.js +++ b/lib/utils/compose.js @@ -20,7 +20,6 @@ import { stripIndent } from 'common-tags'; import * as path from 'path'; import { getChalk } from './lazy'; -import { IgnoreFileType } from './ignore'; export const appendProjectOptions = opts => opts.concat([ @@ -183,7 +182,7 @@ function originalTarDirectory(dir, param) { const fs = require('mz/fs'); const streamToPromise = require('stream-to-promise'); const { printGitignoreWarn } = require('./compose_ts'); - const { FileIgnorer } = require('./ignore'); + const { FileIgnorer, IgnoreFileType } = require('./ignore'); const { toPosixPath } = require('resin-multibuild').PathUtils; let readFile; if (process.platform === 'win32') {