resolve issues with webpack
This commit is contained in:
parent
09394933ac
commit
49fc526c08
3 changed files with 7191 additions and 28 deletions
7168
app/package-lock.json
generated
Normal file
7168
app/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
|
@ -49,30 +49,6 @@
|
||||||
"standard": "standard --verbose --fix | snazzy",
|
"standard": "standard --verbose --fix | snazzy",
|
||||||
"cleanmac": "find . -name '.DS_Store' -type f -delete"
|
"cleanmac": "find . -name '.DS_Store' -type f -delete"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
|
||||||
"@fortawesome/fontawesome-svg-core": "^1.2.12",
|
|
||||||
"@fortawesome/free-solid-svg-icons": "^5.6.3",
|
|
||||||
"ajv": "^6.5.5",
|
|
||||||
"bithound": "^1.7.0",
|
|
||||||
"clean-webpack-plugin": "^1.0.0",
|
|
||||||
"copy-webpack-plugin": "^4.6.0",
|
|
||||||
"css-loader": "^2.1.0",
|
|
||||||
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
|
||||||
"file-loader": "^3.0.1",
|
|
||||||
"nodemon": "^1.18.6",
|
|
||||||
"postcss-discard-comments": "^4.0.1",
|
|
||||||
"snazzy": "^8.0.0",
|
|
||||||
"snyk": "^1.108.2",
|
|
||||||
"standard": "^12.0.1",
|
|
||||||
"style-loader": "^0.23.1",
|
|
||||||
"uglifyjs-webpack-plugin": "^2.0.1",
|
|
||||||
"url-loader": "^1.1.2",
|
|
||||||
"webpack": "^4.25.1",
|
|
||||||
"webpack-cli": "^3.1.2",
|
|
||||||
"webpack-merge": "^4.1.4",
|
|
||||||
"webpack-stream": "^5.1.1",
|
|
||||||
"xterm": "^3.8.0"
|
|
||||||
},
|
|
||||||
"standard": {
|
"standard": {
|
||||||
"ignore": [
|
"ignore": [
|
||||||
"client/public/webssh2.bundle.js",
|
"client/public/webssh2.bundle.js",
|
||||||
|
@ -82,5 +58,27 @@
|
||||||
"build/*",
|
"build/*",
|
||||||
"workspace/*"
|
"workspace/*"
|
||||||
]
|
]
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@fortawesome/fontawesome-svg-core": "^1.2.12",
|
||||||
|
"@fortawesome/free-solid-svg-icons": "^5.6.3",
|
||||||
|
"clean-webpack-plugin": "^1.0.0",
|
||||||
|
"copy-webpack-plugin": "^4.6.0",
|
||||||
|
"cross-env": "^5.2.0",
|
||||||
|
"css-loader": "^2.1.0",
|
||||||
|
"extract-text-webpack-plugin": "^4.0.0-beta.0",
|
||||||
|
"file-loader": "^3.0.1",
|
||||||
|
"nodaemon": "0.0.5",
|
||||||
|
"postcss-discard-comments": "^4.0.1",
|
||||||
|
"snazzy": "^8.0.0",
|
||||||
|
"standard": "^12.0.1",
|
||||||
|
"style-loader": "^0.23.1",
|
||||||
|
"uglifyjs-webpack-plugin": "^2.1.1",
|
||||||
|
"url-loader": "^1.1.2",
|
||||||
|
"webpack": "^4.28.4",
|
||||||
|
"webpack-cli": "^3.2.1",
|
||||||
|
"webpack-merge": "^4.2.1",
|
||||||
|
"webpack-stream": "^5.2.1",
|
||||||
|
"xterm": "^3.10.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,10 +31,7 @@ module.exports = {
|
||||||
fallback: 'style-loader',
|
fallback: 'style-loader',
|
||||||
use: [
|
use: [
|
||||||
{
|
{
|
||||||
loader: 'css-loader',
|
loader: 'css-loader'
|
||||||
options: {
|
|
||||||
minimize: { discardComments: { removeAll: true } }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue