pds-dev-kit-web-test 2.4.7 → 2.4.9
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/dist/index.esm.js +108 -1669
- package/package.json +1 -1
- package/release-note.md +2 -6
- package/rollup.config.mjs +2 -2
package/package.json
CHANGED
package/release-note.md
CHANGED
@@ -1,10 +1,6 @@
|
|
1
1
|
# PDS-DEV-KIT-WEB Release Notes
|
2
|
-
## [v2.4.
|
2
|
+
## [v2.4.9]
|
3
3
|
## release|https://design.storybook.publ.biz/
|
4
4
|
|
5
5
|
### bundle
|
6
|
-
*
|
7
|
-
* rollup.config.mjs 업데이트
|
8
|
-
* - external 확장하여 (!) Unresolved dependencies warning해결
|
9
|
-
* - styled component babel plugin 추가
|
10
|
-
* webpack.confing.js 변경
|
6
|
+
* external에 styled-component 추가
|
package/rollup.config.mjs
CHANGED
@@ -20,7 +20,6 @@ export default {
|
|
20
20
|
external: [
|
21
21
|
'react',
|
22
22
|
'react-dom',
|
23
|
-
'tslib',
|
24
23
|
'react/jsx-runtime',
|
25
24
|
'smoothscroll-polyfill',
|
26
25
|
'styled-components',
|
@@ -28,7 +27,8 @@ export default {
|
|
28
27
|
'react-router',
|
29
28
|
'void-elements',
|
30
29
|
'nuka-carousel',
|
31
|
-
'lottie-react'
|
30
|
+
'lottie-react',
|
31
|
+
'react-hook-form'
|
32
32
|
],
|
33
33
|
plugins: [
|
34
34
|
// 바벨 트랜스파일러 설정
|