Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanreyes committed Sep 24, 2023
1 parent 16bd9a1 commit cf5905b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/build.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import fs from 'fs';
import { execSync } from 'child_process';
import fs from 'fs';
import { type BuildFormat } from './configs/vite.common';

const formats: BuildFormat[] = ['es', 'mjs', 'cjs', 'iife'];
Expand Down
8 changes: 4 additions & 4 deletions build/configs/vite.common.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import path from 'path';
import { lstatSync, readdirSync } from 'fs';
import vue from '@vitejs/plugin-vue';
import { type InlineConfig } from 'vite';
import { visualizer } from 'rollup-plugin-visualizer';
import { lstatSync, readdirSync } from 'fs';
import path from 'path';
import type { RollupOptions } from 'rollup';
import { visualizer } from 'rollup-plugin-visualizer';
import { type InlineConfig } from 'vite';

export type BuildFormat = 'es' | 'mjs' | 'cjs' | 'iife';

Expand Down

0 comments on commit cf5905b

Please sign in to comment.