Skip to content

Commit

Permalink
Update license-checker, override amdefine
Browse files Browse the repository at this point in the history
The amdefine module was updated to use a newish license syntax that license-checker doesn't seem to support yet. In order to prevent invalid failures I've added an override that will keep things functioning for now.

(cherry picked from commit 6dd8aae)
  • Loading branch information
Spencer Alger committed Jun 29, 2015
1 parent 6789b9f commit 1ed3cbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"husky": "^0.8.1",
"istanbul": "^0.3.15",
"jade": "^1.8.2",
"license-checker": "3.0.3",
"license-checker": "^3.1.0",
"libesvm": "^1.0.1",
"load-grunt-config": "^0.7.0",
"marked": "^0.3.3",
Expand Down
3 changes: 2 additions & 1 deletion tasks/config/licenses.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ module.exports = function (grunt) {
'FileSaver@undefined': ['MIT'],
'[email protected]': ['Public-Domain'],
'[email protected]': ['MIT'],
'[email protected]': ['BSD']
'[email protected]': ['BSD'],
'[email protected]': ['BSD-3-Clause', 'MIT']
}
}
};
Expand Down

0 comments on commit 1ed3cbb

Please sign in to comment.