chore: cleanup

This commit is contained in:
Igor Randjelovic
2022-02-18 15:40:13 +01:00
parent 48c51f6163
commit 0b6ce018ae
2 changed files with 3 additions and 4 deletions

View File

@@ -1,5 +1,4 @@
import Config from 'webpack-chain';
import fs from 'fs';
import {
mockExistsSync,
@@ -8,10 +7,10 @@ import {
fsExistsSyncSpy,
} from '../../scripts/jest.utils';
import base from '../../src/configuration/base';
import { init } from '../../src';
import { applyFileReplacements } from '../../src/helpers/fileReplacements';
import { additionalCopyRules } from '../../src/helpers/copyRules';
import base from '../../src/configuration/base';
import { init } from '../../src';
describe('base configuration', () => {
const platforms = ['ios', 'android'];

View File

@@ -11,11 +11,11 @@ import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer';
import TerserPlugin from 'terser-webpack-plugin';
import { getProjectFilePath, getProjectRootPath } from '../helpers/project';
import { PlatformSuffixPlugin } from '../plugins/PlatformSuffixPlugin';
import { applyFileReplacements } from '../helpers/fileReplacements';
import { addCopyRule, applyCopyRules } from '../helpers/copyRules';
import { WatchStatePlugin } from '../plugins/WatchStatePlugin';
import { getProjectFilePath, getProjectRootPath } from '../helpers/project';
import { hasDependency } from '../helpers/dependencies';
import { applyDotEnvPlugin } from '../helpers/dotEnv';
import { env as _env, IWebpackEnv } from '../index';