grunt-init grunt-init-commonjs --force
This commit is contained in:
13
lib/.jshintrc
Normal file
13
lib/.jshintrc
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"curly": true,
|
||||
"eqeqeq": true,
|
||||
"immed": true,
|
||||
"latedef": true,
|
||||
"newcap": true,
|
||||
"noarg": true,
|
||||
"sub": true,
|
||||
"undef": true,
|
||||
"boss": true,
|
||||
"eqnull": true,
|
||||
"predef": ["exports"]
|
||||
}
|
||||
17
lib/gragir.js.js
Normal file
17
lib/gragir.js.js
Normal file
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
* gragir.js
|
||||
* https://github.com/vishap/gragir.js
|
||||
*
|
||||
* Copyright (c) 2018 Vahagn Khachatryan
|
||||
* Licensed under the MIT license.
|
||||
*/
|
||||
|
||||
(function(exports) {
|
||||
|
||||
'use strict';
|
||||
|
||||
exports.awesome = function() {
|
||||
return 'awesome';
|
||||
};
|
||||
|
||||
}(typeof exports === 'object' && exports || this));
|
||||
Reference in New Issue
Block a user