Skip to content

Commit

Permalink
fix: add missing type argument
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Oct 21, 2024
1 parent 5a4356a commit df91c49
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions lib/compiler/assets-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,7 @@ import * as chokidar from 'chokidar';
import { copyFileSync, mkdirSync, rmSync, statSync } from 'fs';
import { sync } from 'glob';
import { dirname, join, sep } from 'path';
import {
ActionOnFile,
Asset,
AssetEntry,
Configuration,
} from '../configuration';
import { ActionOnFile, Asset, AssetEntry, Configuration } from '../configuration';
import { copyPathResolve } from './helpers/copy-path-resolve';
import { getValueOrDefault } from './helpers/get-value-or-default';

Expand Down Expand Up @@ -38,7 +33,7 @@ export class AssetsManager {
}

public copyAssets(
configuration: Required,
configuration: Required<Configuration>,
appName: string,
outDir: string,
watchAssetsMode: boolean,
Expand Down

0 comments on commit df91c49

Please sign in to comment.