Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
07f15715
Commit
07f15715
authored
Nov 14, 2013
by
Rashid Khan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update loadConfig to allow duplicates
parent
ec964a13
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
6 deletions
+9
-6
Gruntfile.js
+9
-6
No files found.
Gruntfile.js
View file @
07f15715
...
@@ -15,17 +15,20 @@ module.exports = function (grunt) {
...
@@ -15,17 +15,20 @@ module.exports = function (grunt) {
// load task definitions
// load task definitions
grunt
.
loadTasks
(
'tasks'
);
grunt
.
loadTasks
(
'tasks'
);
// Utility function to load plugin configurations into an object
// Utility function to load plugin settings into config
function
loadConfig
(
path
)
{
function
loadConfig
(
config
,
path
)
{
var
object
=
{};
require
(
'glob'
).
sync
(
'*'
,
{
cwd
:
path
}).
forEach
(
function
(
option
)
{
require
(
'glob'
).
sync
(
'*'
,
{
cwd
:
path
}).
forEach
(
function
(
option
)
{
object
[
option
.
replace
(
/
\.
js$/
,
''
)]
=
require
(
path
+
option
)(
config
);
var
key
=
option
.
replace
(
/
\.
js$/
,
''
);
// If key already exists, extend it. It is your responsibility to avoid naming collisions
config
[
key
]
=
config
[
key
]
||
{};
grunt
.
util
.
_
.
extend
(
config
[
key
],
require
(
path
+
option
)(
config
));
});
});
return
object
;
// technically not required
return
config
;
}
}
// Merge that object with what with whatever we have here
// Merge that object with what with whatever we have here
grunt
.
util
.
_
.
extend
(
config
,
loadConfig
(
'./tasks/options/'
)
);
loadConfig
(
config
,
'./tasks/options/'
);
// pass the config to grunt
// pass the config to grunt
grunt
.
initConfig
(
config
);
grunt
.
initConfig
(
config
);
...
...
Write
Preview
Markdown
is supported
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