@fmsim/builder 1.0.6 → 1.0.7
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.7",
|
|
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": "e0cebb22cc2864f0aa1bdfaa0b1114aabcacd13d"
|
|
80
80
|
}
|
package/webpack.config.dev.js
CHANGED
|
@@ -205,6 +205,11 @@ module.exports = {
|
|
|
205
205
|
}),
|
|
206
206
|
new CopyWebpackPlugin({
|
|
207
207
|
patterns: [
|
|
208
|
+
{
|
|
209
|
+
from: 'node_modules/material-symbols/*',
|
|
210
|
+
to: OUTPUT_PATH + '/fmsim',
|
|
211
|
+
context: NodeModuleParentPath
|
|
212
|
+
},
|
|
208
213
|
{
|
|
209
214
|
from: 'node_modules/@material-design-icons/font/*',
|
|
210
215
|
to: OUTPUT_PATH + '/fmsim',
|
package/webpack.config.js
CHANGED
|
@@ -202,6 +202,11 @@ module.exports = {
|
|
|
202
202
|
}),
|
|
203
203
|
new CopyWebpackPlugin({
|
|
204
204
|
patterns: [
|
|
205
|
+
{
|
|
206
|
+
from: 'node_modules/material-symbols/*',
|
|
207
|
+
to: OUTPUT_PATH + '/fmsim',
|
|
208
|
+
context: NodeModuleParentPath
|
|
209
|
+
},
|
|
205
210
|
{
|
|
206
211
|
from: 'node_modules/@material-design-icons/font/*',
|
|
207
212
|
to: OUTPUT_PATH + '/fmsim',
|