Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
9d437acd
Commit
9d437acd
authored
Jan 16, 2020
by
bbaer
Browse files
created combined fullCalendar.min.css and .js
parent
5330cee6
Pipeline
#3142
passed with stages
in 1 minute and 51 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Gruntfile.js
View file @
9d437acd
...
...
@@ -501,6 +501,10 @@ module.exports = function (grunt) {
src
:
[
'
javascript/src/Plugins/qfq.fabric.js
'
],
dest
:
typo3_js
+
'
qfq.fabric.min.js
'
},
fullCalendar
:
{
src
:
[
'
js/fullCalendar.js
'
],
dest
:
typo3_js
+
'
fullCalendar.min.js
'
},
qfqValidator
:
{
src
:
[
'
javascript/src/Plugins/validator.js
'
],
dest
:
typo3_js
+
'
validator.min.js
'
...
...
@@ -509,6 +513,16 @@ module.exports = function (grunt) {
jshint
:
{
all
:
js_sources
},
concat
:
{
js
:
{
src
:
'
js/fullCalendar/*/main.js
'
,
dest
:
'
js/fullCalendar.js
'
},
css
:
{
src
:
'
js/fullCalendar/*/main.min.css
'
,
dest
:
typo3_css
+
'
fullCalendar.min.css
'
}
},
concat_in_order
:
{
debug_standalone
:
{
options
:
{
...
...
@@ -618,7 +632,7 @@ module.exports = function (grunt) {
grunt
.
loadNpmTasks
(
'
grunt-contrib-jasmine
'
);
// Default task(s).
grunt
.
registerTask
(
'
default
'
,
[
'
jshint
'
,
'
concat_in_order
'
,
'
uglify
'
,
'
copy
'
,
'
less
'
]);
grunt
.
registerTask
(
'
default
'
,
[
'
jshint
'
,
'
concat_in_order
'
,
'
concat
'
,
'
uglify
'
,
'
copy
'
,
'
less
'
]);
grunt
.
registerTask
(
'
only-js
'
,
[
'
jshint
'
,
'
concat_in_order
'
,
'
uglify
'
,
'
copy:qfqPlugins
'
,
'
copy:worker
'
]);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment