Fixes bug in grunt definitions

Removes `pkg` property from `IProjectConfig` interface (the config object passed to `grunt.initConfig`) because it is not necessary; it is merely a commonly-used convention.
This commit is contained in:
Andrew Bradley
2014-12-10 15:25:58 -05:00
parent 1fb0d8c3e3
commit ddc41566fd
+1 -2
View File
@@ -122,8 +122,7 @@ declare module grunt {
* {@link http://gruntjs.com/sample-gruntfile}
*/
interface IProjectConfig{
[plugin: string]: any
pkg: any; // unfortunate. It is actually a string
[plugin: string]: any;
}
/**