Skip to content

Commit

Permalink
Merge pull request #402 from nextcloud/dependabot/npm_and_yarn/fstrea…
Browse files Browse the repository at this point in the history
…m-1.0.12

[Security] Bump fstream from 1.0.11 to 1.0.12
  • Loading branch information
nickvergessen authored Aug 23, 2019
2 parents 4089360 + 20f58b9 commit b0e5a71
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
7 changes: 4 additions & 3 deletions js/notifications.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/notifications.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"license": "agpl",
"private": true,
"scripts": {
"dev": "webpack --config src/webpack.dev.js",
"watch": "webpack --progress --watch --config src/webpack.dev.js",
"build": "webpack --progress --hide-modules --config src/webpack.prod.js",
"dev": "NODE_ENV=development webpack --config src/webpack.dev.js",
"watch": "NODE_ENV=development webpack --progress --watch --config src/webpack.dev.js",
"build": "NODE_ENV=production webpack --progress --hide-modules --config src/webpack.prod.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix"
},
Expand Down
5 changes: 4 additions & 1 deletion src/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ module.exports = {
},
{
test: /\.vue$/,
loader: 'vue-loader'
loader: 'vue-loader',
options: {
hotReload: false // disables Hot Reload
}
},
{
test: /\.js$/,
Expand Down

0 comments on commit b0e5a71

Please sign in to comment.