@atlaskit/build-utils
Version:
Collection of utilities to used during the release process of Atlaskit
33 lines (30 loc) • 585 B
text/typescript
export type PkgJson = {
name: string;
version: string;
[allOtherFields: string]: any;
};
export type PackageInfo = {
dir: string;
name: string;
config: PkgJson;
relativeDir: string;
isBrowserPackage: boolean;
runTypeScriptBuild: boolean;
runTypecheck: boolean;
runBabel: boolean;
runFlow: boolean;
runESLint: boolean;
runStylelint: boolean;
runWebdriver: boolean;
runVisualRegression: boolean;
};
export type Tool =
| 'typecheck'
| 'typescriptbuild'
| 'babel'
| 'flow'
| 'eslint'
| 'browserstack'
| 'stylelint'
| 'webdriver'
| 'vr';