Skip to content

Commit

Permalink
types: Update internal type usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Feb 26, 2020
1 parent cb0b6cd commit 7ddd369
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion packages/config-webpack/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ export function getConfig({
core: entry,
},

// @ts-ignore Fix upstream
plugins,

module: {
Expand Down
2 changes: 1 addition & 1 deletion packages/nimbus-common/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"@beemo/core": "^1.1.4",
"@boost/core": "^1.18.2",
"@boost/common": "^1.8.2",
"execa": "^4.0.0",
"fast-glob": "^3.2.2"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/nimbus-common/src/core.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import path from 'path';
import execa from 'execa';
import glob from 'fast-glob';
import Beemo, { BeemoConfig } from '@beemo/core';
import { PackageConfig } from '@boost/core';
import { PackageStructure } from '@boost/common';

export interface NimbusEnvSetting {
targets?:
Expand Down Expand Up @@ -44,7 +44,7 @@ export interface NimbusSettings {
typesFolder: string;
}

export interface NimbusPackage extends PackageConfig {
export interface NimbusPackage extends PackageStructure {
nimbus: BeemoConfig<Partial<NimbusSettings>>;
}

Expand Down
1 change: 0 additions & 1 deletion packages/nimbus/src/configs/babel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ const { context, tool } = process.beemo;
const { graphql, library, next, node, react, env } = getSettings();

export default getConfig({
// @ts-ignore TODO
env,
esm: Boolean(context.args.esm || process.env.ESM),
graphql,
Expand Down

0 comments on commit 7ddd369

Please sign in to comment.