Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
grunt-monty-python
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
7cf39d90
authored
2016-06-10 15:51:51 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix jschecker logic, it shouldn't use mpConfig.base, but always 'src'
instead.
1 parent
fcd24753
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
bower.json
grunt-monty-python.js
package.json
bower.json
View file @
7cf39d9
{
"name"
:
"grunt-monty-python"
,
"version"
:
"2016.0
5.27-2
"
,
"version"
:
"2016.0
6.10-0
"
,
"ignore"
:
[
"**/.*"
,
"node_modules"
,
...
...
grunt-monty-python.js
View file @
7cf39d9
...
...
@@ -278,9 +278,9 @@ module.exports = function (grunt) {
},
};
jscheckerAddExtra
(
mpConfig
[
name
].
all
,
initConfig
[
name
],
'all'
);
jscheckerAddExtra
(
mpConfig
[
name
].
main
,
initConfig
[
name
].
main
.
files
,
mpConfig
.
base
);
jscheckerAddExtra
(
mpConfig
[
name
].
model
,
initConfig
[
name
].
model
.
files
,
mpConfig
.
base
);
jscheckerAddExtra
(
mpConfig
[
name
].
view
,
initConfig
[
name
].
view
.
files
,
mpConfig
.
base
);
jscheckerAddExtra
(
mpConfig
[
name
].
main
,
initConfig
[
name
].
main
.
files
,
'src'
);
jscheckerAddExtra
(
mpConfig
[
name
].
model
,
initConfig
[
name
].
model
.
files
,
'src'
);
jscheckerAddExtra
(
mpConfig
[
name
].
view
,
initConfig
[
name
].
view
.
files
,
'src'
);
checkList
.
push
(
name
);
}
createJschecker
(
...
...
package.json
View file @
7cf39d9
{
"name"
:
"grunt-monty-python"
,
"version"
:
"2016.0
5.27-2
"
,
"version"
:
"2016.0
6.10-0
"
,
"description"
:
"Build system for grunt"
,
"license"
:
"BSD"
,
"repository"
:
{
...
...
Please
register
or
sign in
to post a comment