Skip to content

Commit

Permalink
deps(experiments): bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Niklas Kiefer committed Apr 1, 2022
1 parent 76e7eef commit 46f3fff
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
20 changes: 10 additions & 10 deletions extension-experiments/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,23 +21,23 @@
},
"license": "MIT",
"devDependencies": {
"@sentry/webpack-plugin": "^1.14.2",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.2",
"@sentry/webpack-plugin": "^1.18.8",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"eslint": "^7.21.0",
"eslint-plugin-bpmn-io": "^0.12.0",
"eslint-plugin-bpmn-io": "^0.13.0",
"file-loader": "^6.2.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"serve": "^11.3.2",
"style-loader": "^2.0.0",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0"
"serve": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"jquery": "^3.6.0",
"less": "^4.1.1",
"less-loader": "^8.0.0",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"postit-js-core": "file:../",
"postit-js-extensions": "git+https://github.com/xanpj/postit-js-extensions.git"
}
Expand Down
10 changes: 5 additions & 5 deletions extension-experiments/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const SOURCE_VERSION = process.env.SOURCE_VERSION || process.env.npm_package_git

module.exports = {
entry: {
bundle: ['./app/app.js'],
bundle: [ './app/app.js' ],
},
output: {
path: __dirname + '/public',
Expand All @@ -22,11 +22,11 @@ module.exports = {
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
use: [ 'style-loader', 'css-loader' ],
},
{
test: /\.(woff(2)?|ttf|eot|svg)(\?v=\d+\.\d+\.\d+)?$/,
use: ['file-loader'],
use: [ 'file-loader' ],
},
{
test: /\.less$/i,
Expand All @@ -49,7 +49,7 @@ module.exports = {
],
},
plugins: [
new CopyWebpackPlugin({ patterns: [{ from: '**/*.{html,css,woff,ttf,eot,svg,woff2}', context: 'app/' }] }),
new CopyWebpackPlugin({ patterns: [ { from: '**/*.{html,css,woff,ttf,eot,svg,woff2}', context: 'app/' } ] }),
new webpack.DefinePlugin({
'process.env.SENTRY_DSN': JSON.stringify(SENTRY_DSN || null),
'process.env.SOURCE_VERSION': JSON.stringify(SOURCE_VERSION || null)
Expand All @@ -67,7 +67,7 @@ function sentryIntegration() {
new SentryWebpackPlugin({
release: SOURCE_VERSION,
include: '.',
ignore: ['node_modules', 'webpack.config.js', '*sentry.js'],
ignore: [ 'node_modules', 'webpack.config.js', '*sentry.js' ],
})
];
}
Expand Down

0 comments on commit 46f3fff

Please sign in to comment.