@fmsim/builder 1.0.10 → 1.0.12
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.12",
|
|
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": "
|
|
79
|
+
"gitHead": "fadafb18f3b98f81b81f79addd6c25907e62c61a"
|
|
80
80
|
}
|
package/webpack.config.dev.js
CHANGED
|
@@ -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
|
}),
|