Skip to content

Commit ef4e7d0

Browse files
authored
Merge pull request #14232 from nextcloud/enh/updatenoticiation_to_single_webpack
Move updatenotifications to unified webpack
2 parents d43095e + d6ba420 commit ef4e7d0

10 files changed

Lines changed: 95 additions & 7595 deletions

apps/updatenotification/js/updatenotification.js

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/updatenotification/js/updatenotification.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/updatenotification/package-lock.json

Lines changed: 0 additions & 7523 deletions
This file was deleted.

apps/updatenotification/package.json

Lines changed: 0 additions & 46 deletions
This file was deleted.

apps/updatenotification/webpack.dev.js

Lines changed: 0 additions & 12 deletions
This file was deleted.

apps/updatenotification/webpack.prod.js

Lines changed: 0 additions & 7 deletions
This file was deleted.

package-lock.json

Lines changed: 82 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,13 @@
4040
"marked": "^0.6.0",
4141
"moment": "^2.24.0",
4242
"nextcloud-axios": "^0.1.3",
43+
"nextcloud-vue": "^0.6.3",
4344
"snap.js": "^2.0.9",
4445
"strengthify": "git+https://github.com/MorrisJobke/strengthify.git",
4546
"underscore": "^1.9.1",
46-
"vue": "^2.6.6"
47+
"vue": "^2.6.6",
48+
"v-tooltip": "^2.0.0-rc.33",
49+
"vue-click-outside": "^1.0.7"
4750
},
4851
"devDependencies": {
4952
"@babel/core": "^7.3.3",

webpack.common.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@ const files_trashbin = require('./apps/files_trashbin/webpack')
44
const files_versions = require('./apps/files_versions/webpack');
55
const oauth2 = require('./apps/oauth2/webpack')
66
const systemtags = require('./apps/systemtags/webpack')
7+
const updatenotifications = require('./apps/updatenotification/webpack')
78

89
module.exports = [].concat(
910
core,
1011
files_sharing,
1112
files_trashbin,
1213
files_versions,
1314
oauth2,
14-
systemtags
15+
systemtags,
16+
updatenotifications
1517
);

0 commit comments

Comments
 (0)