Unify vue template design
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
790c897d98
commit
4ed8ee1c1e
14 changed files with 12 additions and 13 deletions
|
@ -24,8 +24,8 @@ watch-js:
|
|||
npm run watch
|
||||
|
||||
clean:
|
||||
rm -f js/merged.js
|
||||
rm -f js/merged.js.map
|
||||
rm -f js/$(app_name).js
|
||||
rm -f js/$(app_name).js.map
|
||||
rm -rf $(build_dir)
|
||||
|
||||
clean-dev:
|
||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
BIN
apps/updatenotification/js/updatenotification.js.map
Normal file
BIN
apps/updatenotification/js/updatenotification.js.map
Normal file
Binary file not shown.
2
apps/updatenotification/package-lock.json
generated
2
apps/updatenotification/package-lock.json
generated
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "notifications",
|
||||
"version": "2.3.0",
|
||||
"version": "2.4.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "notifications",
|
||||
"version": "2.3.0",
|
||||
"version": "2.4.0",
|
||||
"description": "This app provides a backend and frontend for the notification API available in Nextcloud.",
|
||||
"main": "init.js",
|
||||
"directories": {
|
||||
|
@ -8,9 +8,9 @@
|
|||
"test": "tests"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "webpack --config js-src/webpack.dev.js",
|
||||
"watch": "webpack --progress --watch --config js-src/webpack.dev.js",
|
||||
"build": "webpack --progress --hide-modules --config js-src/webpack.prod.js"
|
||||
"dev": "webpack --config webpack.dev.js",
|
||||
"watch": "webpack --progress --watch --config webpack.dev.js",
|
||||
"build": "webpack --progress --hide-modules --config webpack.prod.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
@ -8,7 +8,7 @@ declare(strict_types=1);
|
|||
* This file is licensed under the Affero General Public License version 3 or
|
||||
* later. See the COPYING file.
|
||||
*/
|
||||
script('updatenotification', 'merged');
|
||||
script('updatenotification', 'updatenotification');
|
||||
style('updatenotification', 'admin');
|
||||
/** @var array $_ */
|
||||
?>
|
||||
|
|
|
@ -2,11 +2,11 @@ const path = require('path')
|
|||
const { VueLoaderPlugin } = require('vue-loader');
|
||||
|
||||
module.exports = {
|
||||
entry: './js-src/init.js',
|
||||
entry: path.join(__dirname, 'src', 'init.js'),
|
||||
output: {
|
||||
path: path.resolve(__dirname, '../js'),
|
||||
publicPath: '/',
|
||||
filename: 'merged.js'
|
||||
path: path.resolve(__dirname, './js'),
|
||||
publicPath: '/js/',
|
||||
filename: 'updatenotification.js'
|
||||
},
|
||||
module: {
|
||||
rules: [
|
Loading…
Reference in a new issue