make project compatible with direct npm/yarn installation from github repo

This commit is contained in:
Davison Long 2017-07-17 19:38:18 -04:00
parent b49fef332c
commit 3dec5bb98a
2 changed files with 6 additions and 2 deletions

View File

@ -194,8 +194,12 @@ module.exports = function(grunt) {
target: sources target: sources
}, },
"git-describe": { "git-describe": {
"options": {
failOnError: false
},
build: {} build: {}
} },
gitInfo: "unknown"
}); });
// ---------- // ----------

View File

@ -30,6 +30,6 @@
}, },
"scripts": { "scripts": {
"test": "grunt test", "test": "grunt test",
"prepublish": "grunt build" "prepare": "grunt build"
} }
} }