Skip to content

Commit

Permalink
chore: clean unused code and packages
Browse files Browse the repository at this point in the history
  • Loading branch information
fannheyward committed Nov 23, 2023
1 parent 870925b commit 443b58e
Show file tree
Hide file tree
Showing 6 changed files with 221 additions and 257 deletions.
6 changes: 3 additions & 3 deletions esbuild.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import * as esbuild from 'esbuild';
const options = {
entryPoints: ['src/index.ts'],
bundle: true,
minify: process.env.NODE_ENV === 'production',
sourcemap: process.env.NODE_ENV === 'development',
minify: true,
sourcemap: false,
mainFields: ['module', 'main'],
external: ['coc.nvim'],
platform: 'node',
target: 'node14.14',
target: 'node16',
outfile: 'lib/index.js',
};

Expand Down
Loading

0 comments on commit 443b58e

Please sign in to comment.