@liner-fe/icon 0.1.18 → 0.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @liner-fe/icon
2
2
 
3
+ ## 0.1.20
4
+
5
+ ### Patch Changes
6
+
7
+ - 8c51d93: icon tree shaking 지원
8
+
9
+ ## 0.1.19
10
+
11
+ ### Patch Changes
12
+
13
+ - f7fa240: esbuild-node-externals 삭제
14
+
3
15
  ## 0.1.18
4
16
 
5
17
  ### Patch Changes
@@ -1,20 +1,13 @@
1
1
  import { defineConfig } from 'tsup';
2
- import { nodeExternalsPlugin } from 'esbuild-node-externals';
3
2
 
4
3
  export default defineConfig({
5
4
  entry: ['index.tsx'],
6
5
  outDir: 'lib',
7
6
  format: 'esm',
8
- bundle: true,
9
- minify: false,
10
- keepNames: true,
11
7
  clean: true,
12
- loader: {
13
- '.ts': 'ts',
14
- '.tsx': 'tsx',
15
- },
16
8
  tsconfig: './tsconfig.build.json',
17
9
  platform: 'neutral',
18
10
  dts: true,
19
- esbuildPlugins: [nodeExternalsPlugin()],
11
+ treeshake: true,
12
+ skipNodeModulesBundle: true,
20
13
  });