Skip to content

Commit

Permalink
chore: update @autoguru/babel-preset to version 3.1.1 in yarn.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
amir-zahedi committed Feb 20, 2025
1 parent 31f287b commit a06b7f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/gdu/commands/build/buildSPA.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { GuruConfig } from '../../lib/config';
import { run } from '../../lib/runWebpack';
import { getHooks } from '../../utils/hooks';

export const buildSPA = async (guruConfig: GuruConfig, tenant: string) => {
export const buildSPA = async (guruConfig: GuruConfig) => {
const hooks = getHooks();

// eslint-disable-next-line unicorn/prefer-prototype-methods
Expand Down
2 changes: 1 addition & 1 deletion packages/gdu/commands/build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default async ({ tenant }) => {
let stats;
switch (guruConfig?.type) {
case 'spa':
stats = await buildSPA(guruConfig, tenant);
stats = await buildSPA(guruConfig);
break;
case 'ssr':
stats = await buildSSR(guruConfig);
Expand Down

0 comments on commit a06b7f4

Please sign in to comment.