@evanpurkhiser/tooling-personal 1.25.0 → 1.26.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.
@@ -9,7 +9,7 @@ const fzf_1 = require("../fzf");
9
9
  async function selectCommit() {
10
10
  const commits = await simple_git_1.default().log({ from: 'HEAD', to: 'origin/master' });
11
11
  const selected = await fzf_1.fzfSelect({
12
- prompt: 'Select commit(s) for PR:',
12
+ prompt: 'Select commit(s):',
13
13
  genValues: addOption => commits.all.forEach(commit => {
14
14
  const shortHash = commit.hash.slice(0, 8);
15
15
  const label = chalk_1.default `{red ${shortHash}} {blue [${commit.author_name}]} {white ${commit.message}}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evanpurkhiser/tooling-personal",
3
- "version": "1.25.0",
3
+ "version": "1.26.0",
4
4
  "description": "Evan Purkhiser's personal tooling",
5
5
  "repository": "https://github.com/evanpurkhiser/tooling-personal",
6
6
  "author": "Evan Purkhiser",