@evanpurkhiser/tooling-personal 1.17.0 → 1.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/utils.js +1 -2
- package/package.json +1 -1
package/dist/utils.js
CHANGED
|
@@ -9,7 +9,6 @@ const js_yaml_1 = __importDefault(require("js-yaml"));
|
|
|
9
9
|
const simple_git_1 = __importDefault(require("simple-git"));
|
|
10
10
|
const fs_1 = require("fs");
|
|
11
11
|
const path_1 = __importDefault(require("path"));
|
|
12
|
-
const BRANCH_PREFIX = 'evanpurkhiser/';
|
|
13
12
|
/**
|
|
14
13
|
* Get's the current repo information
|
|
15
14
|
*/
|
|
@@ -58,6 +57,6 @@ function branchFromMessage(prefix, commitMessage) {
|
|
|
58
57
|
.replaceAll(/[^0-9a-zA-Z]/g, '-')
|
|
59
58
|
.replaceAll(/-+/g, '-')
|
|
60
59
|
.slice(0, 255);
|
|
61
|
-
return
|
|
60
|
+
return `${prefix}/${branch}`;
|
|
62
61
|
}
|
|
63
62
|
exports.branchFromMessage = branchFromMessage;
|
package/package.json
CHANGED