grunt-init grunt-init-commonjs --force

This commit is contained in:
Vahagn Khachatryan
2018-12-21 16:29:41 +00:00
parent 52e165a6f3
commit 1359c7b2c5
9 changed files with 279 additions and 6 deletions

13
lib/.jshintrc Normal file
View 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
View 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));