Merge branch 'christine-profile' of ssh://**REDACTED**/~/php/cakePHP/gradido_community_server into christine-profile

This commit is contained in:
Christine Slotty 2020-07-28 17:45:58 +02:00
commit d4f3fb3f3f
3 changed files with 7 additions and 1 deletions

View File

@ -0,0 +1,5 @@
INSERT INTO `transaction_types` (`id`, `name`, `text`) VALUES
(1, 'creation', 'Aktives oder Bedingungsloses Grundeinkommen.'),
(2, 'transfer', 'Einfache Überweisung');

@ -1 +1 @@
Subproject commit 9004e6978ac3dafcc635b2ffcf8bc6a156451cca
Subproject commit 72e8fe7b73a1aaf2d057d2fef59ade9268830008

View File

@ -6,6 +6,7 @@
"scripts": {
"watch:js": "watchify ./src/js/app.js -t [ babelify --presets [ @babel/preset-env ] ] -o ../webroot/js/app.js -v",
"watch:css": "gulp watchStyles",
"bundle:css": "gulp bundleStyles",
"prebuild": "browserify ./src/js/app.js -t [ babelify --presets [ @babel/preset-env ] ] -o ./public/app.rl.js -v",
"build": "gulp compressStyles && browserify ./public/app.rl.js -g uglifyify -p bundle-collapser/plugin | uglifyjs --compress --mangle toplevel,eval > ../webroot/js/app.min.js"
},