@liner-fe/icon 0.1.17 → 0.1.19
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 +14 -0
- package/config/tsup/tsup.config.ts +2 -9
- package/lib/index.js +2621 -7153
- package/package.json +13 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @liner-fe/icon
|
|
2
2
|
|
|
3
|
+
## 0.1.19
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f7fa240: esbuild-node-externals 삭제
|
|
8
|
+
|
|
9
|
+
## 0.1.18
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 396af24: fix: prism, icon sideEffect false
|
|
14
|
+
- Updated dependencies [6bdb555]
|
|
15
|
+
- @liner-fe/design-token-primitive@0.1.31
|
|
16
|
+
|
|
3
17
|
## 0.1.17
|
|
4
18
|
|
|
5
19
|
### 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
|
-
|
|
11
|
+
treeshake: true,
|
|
12
|
+
skipNodeModulesBundle: true,
|
|
20
13
|
});
|