Skip to content

Commit

Permalink
style(type): add type to type imports
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdbradley committed Aug 7, 2020
1 parent a6f2c8e commit 2314c3a
Show file tree
Hide file tree
Showing 367 changed files with 424 additions and 530 deletions.
2 changes: 1 addition & 1 deletion src/cli/public.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CliInitOptions, CompilerSystem, Config, ConfigFlags, Logger, TaskCommand } from '@stencil/core/internal';
import type { CliInitOptions, CompilerSystem, Config, ConfigFlags, Logger, TaskCommand } from '@stencil/core/internal';

/**
* Runs the CLI with the given options. This is used by Stencil's default `bin/stencil` file,
Expand Down
2 changes: 1 addition & 1 deletion src/client/client-build.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../declarations';
import type * as d from '../declarations';
import { BUILD } from '@app-data';

export const Build: d.UserBuildConditionals = {
Expand Down
2 changes: 1 addition & 1 deletion src/client/client-host-ref.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../declarations';
import type * as d from '../declarations';
import { addHostEventListeners } from '@runtime';
import { BUILD } from '@app-data';

Expand Down
2 changes: 1 addition & 1 deletion src/client/client-load-module.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../declarations';
import type * as d from '../declarations';
import { BUILD } from '@app-data';
import { consoleError, consoleDevError } from './client-log';

Expand Down
2 changes: 1 addition & 1 deletion src/client/client-patch-browser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../declarations';
import type * as d from '../declarations';
import { BUILD, NAMESPACE } from '@app-data';
import { consoleDevInfo, H, doc, plt, promiseResolve, win } from '@platform';
import { getDynamicImportFunction } from '@utils';
Expand Down
2 changes: 1 addition & 1 deletion src/client/client-style.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../declarations';
import type * as d from '../declarations';

export const styles: d.StyleMap = /*@__PURE__*/ new Map();
export const modeResolutionChain: d.ResolutionHandler[] = [];
3 changes: 1 addition & 2 deletions src/client/client-task-queue.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../declarations';
import type * as d from '../declarations';
import { consoleError } from './client-log';
import { plt, promiseResolve } from './client-window';
import { PLATFORM_FLAGS } from '../runtime/runtime-constants';
Expand Down Expand Up @@ -82,7 +82,6 @@ const flush = () => {
} else {
queueCongestion = 0;
}

} else {
consume(queueDomWrites);
if ((queuePending = queueDomReads.length > 0)) {
Expand Down
2 changes: 1 addition & 1 deletion src/client/client-window.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../declarations';
import type * as d from '../declarations';
import { BUILD } from '@app-data';

export const win = typeof window !== 'undefined' ? window : ({} as Window);
Expand Down
7 changes: 2 additions & 5 deletions src/compiler/app-core/app-es5-disabled.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { escapeHtml } from '@utils';
import { join } from 'path';

Expand Down Expand Up @@ -142,8 +142,5 @@ h2 {
};

const inlineHTML = (html: string) => {
return html
.replace(/\n/g, '\\n')
.replace(/\'/g, `\\'`)
.trim();
return html.replace(/\n/g, '\\n').replace(/\'/g, `\\'`).trim();
};
2 changes: 1 addition & 1 deletion src/compiler/app-core/app-polyfills.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { join } from 'path';

export const getClientPolyfill = async (config: d.Config, compilerCtx: d.CompilerCtx, polyfillFile: string) => {
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/app-core/bundle-app-core.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { OutputOptions, RollupBuild } from 'rollup';
import { STENCIL_CORE_ID } from '../bundle/entry-alias-ids';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/build/build-ctx.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { hasError, hasWarning } from '@utils';

/**
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/build/build-hmr.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { getScopeId } from '../style/scope-css';
import { isOutputTargetWww } from '../output-targets/output-utils';
import minimatch from 'minimatch';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/build/build-results.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { generateHmr } from './build-hmr';
import { getBuildTimestamp } from './build-ctx';
import { hasError, isString, normalizeDiagnostics, fromEntries } from '@utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/build/build.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { buildAbort, buildFinish } from './build-finish';
import { catchError, isString, readPackageJson } from '@utils';
import { createDocument } from '@stencil/core/mock-doc';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/build/compiler-ctx.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { basename, dirname, extname, join } from 'path';
import { buildEvents } from '../events';
import { normalizePath } from '@utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/build/full-build.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { build } from './build';
import { BuildContext } from './build-ctx';
import { createTsBuildProgram } from '../transpile/create-build-program';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/build/validate-files.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { validateBuildPackageJson } from '../types/validate-build-package-json';
import { validateManifestJson } from '../html/validate-manifest-json';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/build/write-build.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { catchError } from '@utils';
import { outputServiceWorkers } from '../output-targets/output-service-workers';
import { validateBuildFiles } from './validate-files';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/bundle/app-data-plugin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import MagicString from 'magic-string';
import { createJsVarName, normalizePath, isString, loadTypeScriptDiagnostics } from '@utils';
import type { Plugin } from 'rollup';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/bundle/ext-format-plugin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { basename } from 'path';
import { createJsVarName, normalizeFsPathQuery } from '@utils';
import type { Plugin, TransformPluginContext } from 'rollup';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/bundle/ext-transforms-plugin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import type { BundleOptions } from './bundle-interface';
import { hasError, normalizeFsPath } from '@utils';
import { isOutputTargetDistCollection } from '../output-targets/output-utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/bundle/file-load-plugin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { normalizeFsPath } from '@utils';
import type { Plugin } from 'rollup';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/bundle/plugin-helper.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { buildError } from '@utils';
import { relative } from 'path';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/bundle/test/core-resolve-plugin.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { createSystem } from '../../../compiler/sys/stencil-sys';
import { getHydratedFlagHead, getStencilInternalModule } from '../core-resolve-plugin';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/bundle/typescript-plugin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import type { BundleOptions } from './bundle-interface';
import { getModule } from '../transpile/transpiled-module';
import { isString, normalizeFsPath } from '@utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/bundle/user-index-plugin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import type { Plugin } from 'rollup';
import { USER_INDEX_ENTRY_ID } from './entry-alias-ids';
import { join } from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/bundle/worker-plugin.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import type { Plugin, TransformResult, PluginContext } from 'rollup';
import { bundleOutput } from './bundle-output';
import { normalizeFsPath, hasError } from '@utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/config-utils.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { isAbsolute, join } from 'path';

export const getAbsolutePath = (config: d.Config, dir: string) => {
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { buildError } from '@utils';
import { VALID_TYPES_NEXT } from '../../output-targets/output-utils';
import { validateCollection } from './validate-collection';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/validate-angular.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { isOutputTargetAngular } from '../../output-targets/output-utils';
import { isAbsolute, join } from 'path';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/validate-collection.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { getAbsolutePath } from '../config-utils';
import { isOutputTargetDistCollection } from '../../output-targets/output-utils';
import { join } from 'path';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { COPY, isOutputTargetDistCustomElementsBundle } from '../../output-targets/output-utils';
import { getAbsolutePath } from '../config-utils';
import { isBoolean } from '@utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/validate-custom-element.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { getAbsolutePath } from '../config-utils';
import { isBoolean } from '@utils';
import { isOutputTargetDistCustomElements } from '../../output-targets/output-utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/validate-custom-output.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { catchError } from '@utils';
import { COPY, isOutputTargetCustom } from '../../output-targets/output-utils';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/validate-dist.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { getAbsolutePath } from '../config-utils';
import {
COPY,
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/validate-docs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { buildError } from '@utils';
import { isAbsolute, join } from 'path';
import { isOutputTargetDocsCustom, isOutputTargetDocsJson, isOutputTargetDocsReadme, isOutputTargetDocsVscode } from '../../output-targets/output-utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/validate-hydrate-script.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { DIST_HYDRATE_SCRIPT, isOutputTargetDist, isOutputTargetHydrate, isOutputTargetWww } from '../../output-targets/output-utils';
import { isBoolean, isString } from '@utils';
import { isAbsolute, join } from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/validate-lazy.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { DIST_LAZY, isOutputTargetDistLazy } from '../../output-targets/output-utils';
import { getAbsolutePath } from '../config-utils';
import { isBoolean } from '@utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/validate-stats.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { isAbsolute, join } from 'path';
import { STATS, isOutputTargetStats } from '../../output-targets/output-utils';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/outputs/validate-www.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { buildError, isBoolean, isString } from '@utils';
import { COPY, DIST_GLOBAL_STYLES, DIST_LAZY, WWW, isOutputTargetWww, isOutputTargetDist } from '../../output-targets/output-utils';
import { getAbsolutePath } from '../config-utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/load-config.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { createSystem } from '../../../compiler/sys/stencil-sys';
import { loadConfig } from '../load-config';
import { normalizePath } from '../../../utils';
Expand Down
4 changes: 2 additions & 2 deletions src/compiler/config/test/validate-config.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { mockLogger, mockStencilSystem } from '@stencil/core/testing';
import { validateConfig } from '../validate-config';

Expand Down Expand Up @@ -316,7 +316,7 @@ describe('validation', () => {
});

it('should set taskQueue', () => {
userConfig.taskQueue = 'congestionAsync'
userConfig.taskQueue = 'congestionAsync';
const { config } = validateConfig(userConfig);
expect(config.taskQueue).toBe('congestionAsync');
});
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-custom.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { mockConfig } from '@stencil/core/testing';
import { validateConfig } from '../validate-config';
import { buildWarn } from '@utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-dev-server.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../../declarations';
import type * as d from '../../../declarations';
import { normalizePath } from '../../../utils';
import { validateConfig } from '../validate-config';
import path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-docs.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { mockConfig } from '@stencil/core/testing';
import { validateConfig } from '../validate-config';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-namespace.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { validateNamespace } from '../validate-namespace';

describe('validateNamespace', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-output-dist.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { validateConfig } from '../validate-config';
import { mockConfig } from '@stencil/core/testing';
import path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-output-www.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { isOutputTargetCopy, isOutputTargetWww } from '../../output-targets/output-utils';
import { validateConfig } from '../validate-config';
import path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-paths.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { mockLogger, mockStencilSystem } from '@stencil/core/testing';
import { validateConfig } from '../validate-config';
import path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-rollup-config.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { validateRollupConfig } from '../validate-rollup-config';

describe('validateStats', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-service-worker.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { mockStencilSystem } from '@stencil/core/testing';
import { validateServiceWorker } from '../validate-service-worker';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-stats.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { mockConfig } from '@stencil/core/testing';
import { validateConfig } from '../validate-config';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-testing.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { mockLogger, mockStencilSystem } from '@stencil/core/testing';
import { validateConfig } from '../validate-config';
import path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/test/validate-workers.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '@stencil/core/declarations';
import type * as d from '@stencil/core/declarations';
import { validateConfig } from '../validate-config';
import { mockLogger } from '@stencil/core/testing';
import path from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/validate-copy.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { unique } from '@utils';

export const validateCopy = (copy: d.CopyTask[] | boolean, defaultCopy: d.CopyTask[] = []): d.CopyTask[] => {
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/validate-dev-server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { buildError, isBoolean, isNumber, isString, normalizePath } from '@utils';
import { isAbsolute, join } from 'path';
import { isOutputTargetWww } from '../output-targets/output-utils';
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/validate-namespace.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { buildError, dashToPascalCase, isString } from '@utils';
import { isOutputTargetDist } from '../output-targets/output-utils';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/validate-paths.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { isAbsolute, join } from 'path';

export const validatePaths = (config: d.Config) => {
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/validate-plugins.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { buildWarn } from '@utils';

export const validatePlugins = (config: d.Config, diagnostics: d.Diagnostic[]) => {
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/validate-prerender.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { buildError, normalizePath } from '@utils';
import { isAbsolute, join } from 'path';

Expand Down
2 changes: 1 addition & 1 deletion src/compiler/config/validate-rollup-config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as d from '../../declarations';
import type * as d from '../../declarations';
import { isObject, pluck } from '@utils';

export const validateRollupConfig = (config: d.Config) => {
Expand Down
Loading

0 comments on commit 2314c3a

Please sign in to comment.