@fmsim/builder 1.0.42 → 1.0.56
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/package.json +2 -2
- package/webpack.config.dev.js +5 -0
- package/webpack.config.js +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fmsim/builder",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.56",
|
|
4
4
|
"description": "Layout View 어플리케이션 빌드를 위해 구성된 모듈입니다.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "Hearty Oh <heartyoh@hatiolab.com>",
|
|
@@ -83,5 +83,5 @@
|
|
|
83
83
|
"webpack-dev-server": "^5.2.0",
|
|
84
84
|
"workbox-webpack-plugin": "^7.0.0"
|
|
85
85
|
},
|
|
86
|
-
"gitHead": "
|
|
86
|
+
"gitHead": "8b3087c797edfeeda8209456c00ef16e32dc1b9a"
|
|
87
87
|
}
|
package/webpack.config.dev.js
CHANGED
|
@@ -220,6 +220,11 @@ module.exports = {
|
|
|
220
220
|
to: OUTPUT_PATH + '/fmsim',
|
|
221
221
|
context: NodeModuleParentPath
|
|
222
222
|
},
|
|
223
|
+
{
|
|
224
|
+
from: 'node_modules/pretendard/**/*',
|
|
225
|
+
to: OUTPUT_PATH + '/fmsim',
|
|
226
|
+
context: NodeModuleParentPath
|
|
227
|
+
},
|
|
223
228
|
{
|
|
224
229
|
from: 'node_modules/@webcomponents/webcomponentsjs/*',
|
|
225
230
|
to: OUTPUT_PATH + '/fmsim',
|
package/webpack.config.js
CHANGED
|
@@ -217,6 +217,11 @@ module.exports = {
|
|
|
217
217
|
to: OUTPUT_PATH + '/fmsim',
|
|
218
218
|
context: NodeModuleParentPath
|
|
219
219
|
},
|
|
220
|
+
{
|
|
221
|
+
from: 'node_modules/pretendard/**/*',
|
|
222
|
+
to: OUTPUT_PATH + '/fmsim',
|
|
223
|
+
context: NodeModuleParentPath
|
|
224
|
+
},
|
|
220
225
|
{
|
|
221
226
|
from: 'node_modules/@webcomponents/webcomponentsjs/*',
|
|
222
227
|
to: OUTPUT_PATH + '/fmsim',
|