@liner-fe/icon-rn 0.0.27 → 0.0.29

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-rn
2
2
 
3
+ ## 0.0.29
4
+
5
+ ### Patch Changes
6
+
7
+ - c2c9eb7: Update Icon
8
+
9
+ ## 0.0.28
10
+
11
+ ### Patch Changes
12
+
13
+ - bd7290c: icon 관리 방식 전체 변경
14
+
3
15
  ## 0.0.27
4
16
 
5
17
  ### Patch Changes
@@ -0,0 +1,3 @@
1
+ import { generateSvgFiles } from '@liner-fe/internal-icon';
2
+
3
+ generateSvgFiles();
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@liner-fe/icon-rn",
3
- "version": "0.0.27",
3
+ "version": "0.0.29",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "files": [
8
8
  "*"
9
9
  ],
10
+ "devDependencies": {
11
+ "@liner-fe/internal-icon": "^1.0.1"
12
+ },
10
13
  "scripts": {
11
- "build": ""
14
+ "build": "node generate-icon.mjs"
12
15
  }
13
16
  }