@fmsim/builder 1.0.38 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fmsim/builder",
3
- "version": "1.0.38",
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": "f5b6e30361db0aa27c5e38f8ce88d4ecd6841938"
86
+ "gitHead": "8b3087c797edfeeda8209456c00ef16e32dc1b9a"
87
87
  }
@@ -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',
@@ -239,6 +244,7 @@ module.exports = {
239
244
  {
240
245
  from: 'node_modules/pdfjs-dist/build/*',
241
246
  to: OUTPUT_PATH,
247
+ noErrorOnMissing: true,
242
248
  context: NodeModuleParentPath
243
249
  }
244
250
  ]
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',
@@ -236,6 +241,7 @@ module.exports = {
236
241
  {
237
242
  from: 'node_modules/pdfjs-dist/build/*',
238
243
  to: OUTPUT_PATH,
244
+ noErrorOnMissing: true,
239
245
  context: NodeModuleParentPath
240
246
  }
241
247
  ]