add moduleId option for specifying a custom module id

This commit is contained in:
Sebastian McKenzie
2015-02-21 14:29:26 +11:00
parent 5bc78b0237
commit 9a2e56f003
9 changed files with 23 additions and 17 deletions

View File

@@ -1,5 +0,0 @@
exports.getModuleName = function () {
return "my custom module name";
};
exports.moduleIds = true;

View File

@@ -0,0 +1,4 @@
{
"moduleIds": true,
"moduleId": "my custom module name"
}

View File

@@ -1,5 +0,0 @@
exports.getModuleName = function () {
return "my custom module name";
};
exports.moduleIds = true;

View File

@@ -0,0 +1,4 @@
{
"moduleIds": true,
"moduleId": "my custom module name"
}

View File

@@ -1,5 +0,0 @@
exports.getModuleName = function () {
return "my custom module name";
};
exports.moduleIds = true;

View File

@@ -0,0 +1,4 @@
{
"moduleIds": true,
"moduleId": "my custom module name"
}