@fmsim/builder 1.0.11 → 1.0.13

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.11",
3
+ "version": "1.0.13",
4
4
  "description": "Layout View 어플리케이션 빌드를 위해 구성된 모듈입니다.",
5
5
  "main": "index.js",
6
6
  "author": "Hearty Oh <heartyoh@hatiolab.com>",
@@ -76,5 +76,5 @@
76
76
  "webpack-dev-server": "^4.11.0",
77
77
  "workbox-webpack-plugin": "^7.0.0"
78
78
  },
79
- "gitHead": "29eba09a73b0ecd324e1666b9bafeca4d92efcf1"
79
+ "gitHead": "b9b823a7e69c8d894758c65c5e7af54edd95dba2"
80
80
  }
@@ -235,6 +235,11 @@ module.exports = {
235
235
  to: OUTPUT_PATH + '/fmsim',
236
236
  noErrorOnMissing: true,
237
237
  context: NodeModuleParentPath
238
+ },
239
+ {
240
+ from: 'node_modules/pdfjs-dist/build/*',
241
+ to: OUTPUT_PATH,
242
+ context: NodeModuleParentPath
238
243
  }
239
244
  ]
240
245
  }),
package/webpack.config.js CHANGED
@@ -232,6 +232,11 @@ module.exports = {
232
232
  to: OUTPUT_PATH + '/fmsim',
233
233
  noErrorOnMissing: true,
234
234
  context: NodeModuleParentPath
235
+ },
236
+ {
237
+ from: 'node_modules/pdfjs-dist/build/*',
238
+ to: OUTPUT_PATH,
239
+ context: NodeModuleParentPath
235
240
  }
236
241
  ]
237
242
  }),