mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
Update copy-webpack-plugin, css-loader, html-webpack-plugin, style-loader, webpack and webpack-cli
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
8cf41ee669
commit
f7fea81c32
3 changed files with 1015 additions and 584 deletions
|
@ -175,7 +175,7 @@
|
||||||
"babel-polyfill": "^6.26.0",
|
"babel-polyfill": "^6.26.0",
|
||||||
"babel-preset-env": "^1.7.0",
|
"babel-preset-env": "^1.7.0",
|
||||||
"babel-runtime": "^6.26.0",
|
"babel-runtime": "^6.26.0",
|
||||||
"copy-webpack-plugin": "^5.0.5",
|
"copy-webpack-plugin": "^6.0.3",
|
||||||
"css-loader": "^3.2.0",
|
"css-loader": "^3.2.0",
|
||||||
"eslint": "^5.9.0",
|
"eslint": "^5.9.0",
|
||||||
"eslint-config-standard": "^12.0.0",
|
"eslint-config-standard": "^12.0.0",
|
||||||
|
|
|
@ -129,27 +129,28 @@ module.exports = {
|
||||||
filename: path.join(__dirname, 'public/views/build/slide-pack-scripts.ejs'),
|
filename: path.join(__dirname, 'public/views/build/slide-pack-scripts.ejs'),
|
||||||
inject: false
|
inject: false
|
||||||
}),
|
}),
|
||||||
new CopyWebpackPlugin([
|
new CopyWebpackPlugin({
|
||||||
|
patterns: [
|
||||||
{
|
{
|
||||||
context: path.join(__dirname, 'node_modules/mathjax/unpacked'),
|
context: path.join(__dirname, 'node_modules/mathjax/unpacked'),
|
||||||
from: {
|
from: '**/*',
|
||||||
glob: '**/*',
|
globOptions: {
|
||||||
dot: false
|
dot: false
|
||||||
},
|
},
|
||||||
to: 'MathJax/'
|
to: 'MathJax/'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
context: path.join(__dirname, 'node_modules/mathjax/fonts'),
|
context: path.join(__dirname, 'node_modules/mathjax/fonts'),
|
||||||
from: {
|
from: '**/*',
|
||||||
glob: '**/*',
|
globOptions: {
|
||||||
dot: false
|
dot: false
|
||||||
},
|
},
|
||||||
to: 'fonts/'
|
to: 'fonts/'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
context: path.join(__dirname, 'node_modules/emojify.js'),
|
context: path.join(__dirname, 'node_modules/emojify.js'),
|
||||||
from: {
|
from: 'dist/**/*',
|
||||||
glob: 'dist/**/*',
|
globOptions: {
|
||||||
dot: false
|
dot: false
|
||||||
},
|
},
|
||||||
to: 'emojify.js/'
|
to: 'emojify.js/'
|
||||||
|
@ -174,7 +175,8 @@ module.exports = {
|
||||||
from: 'plugin',
|
from: 'plugin',
|
||||||
to: 'reveal.js/plugin'
|
to: 'reveal.js/plugin'
|
||||||
}
|
}
|
||||||
]),
|
]
|
||||||
|
}),
|
||||||
new MiniCssExtractPlugin()
|
new MiniCssExtractPlugin()
|
||||||
],
|
],
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue