Skip to content

Commit

Permalink
Reorder imports in build.ts and vite-server.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
mrauhu committed Jan 7, 2022
1 parent 50781f7 commit bda9c63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/storybook-builder-vite/build.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as path from 'path';
import { build as viteBuild } from 'vite';
import { allowedEnvPrefix as envPrefix, stringifyProcessEnvs } from './envs';
import { pluginConfig } from './vite-config';
import { build as viteBuild } from 'vite';

import type { UserConfig } from 'vite';
import type { EnvsRaw, ExtendedOptions } from './types';
Expand Down
2 changes: 1 addition & 1 deletion packages/storybook-builder-vite/vite-server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as path from 'path';
import { createServer } from 'vite';
import { allowedEnvPrefix as envPrefix, stringifyProcessEnvs } from './envs';
import { getOptimizeDeps } from './optimizeDeps';
import { createServer } from 'vite';
import { pluginConfig } from './vite-config';

import type { Server } from 'http';
Expand Down

0 comments on commit bda9c63

Please sign in to comment.