Skip to content

Commit

Permalink
fix(repo): fix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
vsavkin committed Mar 24, 2022
1 parent 1dd4044 commit 2071c2e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dep-graph/client/src/app/state.provider.tsx
Expand Up @@ -11,7 +11,7 @@ export const GlobalStateProvider = (props) => {
const depGraphService = getDepGraphService();

return (
<GlobalStateContext.Provider value={depGraphService}>
<GlobalStateContext.Provider value={depGraphService as any}>
{props.children}
</GlobalStateContext.Provider>
);
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/executors/dev-server/dev-server.impl.ts
Expand Up @@ -90,7 +90,7 @@ export default async function* devServerExecutor(
return yield* eachValueFrom(
runWebpackDevServer(webpackConfig, webpack, WebpackDevServer).pipe(
tap(({ stats }) => {
console.info(stats.toString(webpackConfig.stats));
console.info(stats.toString((webpackConfig as any).stats));
}),
map(({ baseUrl, stats }) => {
return {
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/utils/devserver.config.ts
Expand Up @@ -56,7 +56,7 @@ export function getDevServerConfig(
})
);

return webpackConfig;
return webpackConfig as any;
}

function getDevServerPartial(
Expand Down

0 comments on commit 2071c2e

Please sign in to comment.