@gkalpak/aliases 0.9.3 → 0.9.4

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.
@@ -3,7 +3,7 @@
3
3
  const utils = require('../../lib/utils');
4
4
  /* eslint-disable max-len */
5
5
  console.log(utils.stripIndentation(`
6
- ### [Generated by: @gkalpak/aliases v0.9.3]
6
+ ### [Generated by: @gkalpak/aliases v0.9.4]
7
7
  ### Copy the following into '~/.bashrc':
8
8
 
9
9
  # Set up prompt.
@@ -3,7 +3,7 @@
3
3
  const utils = require('../../lib/utils');
4
4
  /* eslint-disable max-len */
5
5
  console.log(utils.stripIndentation(`
6
- ### [Generated by: @gkalpak/aliases v0.9.3]
6
+ ### [Generated by: @gkalpak/aliases v0.9.4]
7
7
  ### Copy the following into '~/.bashrc':
8
8
 
9
9
  # Set up prompt.
@@ -2,12 +2,12 @@
2
2
  'use strict';
3
3
  const utils = require('../../lib/utils');
4
4
  console.log(utils.stripIndentation(`
5
- ### [Generated by: @gkalpak/aliases v0.9.3]
5
+ ### [Generated by: @gkalpak/aliases v0.9.4]
6
6
  ### Run the following commands:
7
7
 
8
8
  git config --global commit.gpgSign true
9
9
  git config --global core.editor "vim"
10
- git config --global credential.helper "store"
10
+ git config --global credential.helper "manager"
11
11
  git config --global merge.tool "kdiff3"
12
12
  git config --global mergetool.kdiff3.path "/path/to/kdiff3"
13
13
  git config --global mergetool.kdiff3.trustExitCode "false"
@@ -2,12 +2,12 @@
2
2
  'use strict';
3
3
  const utils = require('../../lib/utils');
4
4
  console.log(utils.stripIndentation(`
5
- ### [Generated by: @gkalpak/aliases v0.9.3]
5
+ ### [Generated by: @gkalpak/aliases v0.9.4]
6
6
  ### Run the following commands:
7
7
 
8
8
  git config --global commit.gpgSign true
9
9
  git config --global core.editor "vim"
10
- git config --global credential.helper "/mnt/c/Program\\ Files/Git/mingw64/libexec/git-core/git-credential-manager.exe"
10
+ git config --global credential.helper "/mnt/c/Program\\ Files/Git/mingw64/bin/git-credential-manager-core.exe"
11
11
  git config --global merge.tool "kdiff3"
12
12
  git config --global mergetool.kdiff3.path "/path/to/kdiff3"
13
13
  git config --global mergetool.kdiff3.trustExitCode "false"
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
2
  'use strict';
3
- console.log('""" [Generated by: @gkalpak/aliases v0.9.3]');
3
+ console.log('""" [Generated by: @gkalpak/aliases v0.9.4]');
4
4
  console.log('""" Copy the following into \'~/.vimrc\':\n');
5
5
  console.log(require('fs').readFileSync(`${__dirname}/../../lib/assets/vimrc.txt`, 'utf8').trim() + '\n');
package/bin/misc/alv.js CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env node
2
2
  'use strict';
3
- console.log('@gkalpak/aliases v0.9.3');
3
+ console.log('@gkalpak/aliases v0.9.4');
package/lib/constants.js CHANGED
@@ -469,10 +469,9 @@ const ALIASES = {
469
469
 
470
470
  // GIT
471
471
  cfggit: new Alias({
472
- default: CFGGIT_SPEC_WITH_CRED_HELPER('store'),
473
- win32: CFGGIT_SPEC_WITH_CRED_HELPER('manager'),
472
+ default: CFGGIT_SPEC_WITH_CRED_HELPER('manager'),
474
473
  wsl: CFGGIT_SPEC_WITH_CRED_HELPER(
475
- '/mnt/c/Program\\\\ Files/Git/mingw64/libexec/git-core/git-credential-manager.exe'),
474
+ '/mnt/c/Program\\\\ Files/Git/mingw64/bin/git-credential-manager-core.exe'),
476
475
  }),
477
476
 
478
477
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gkalpak/aliases",
3
- "version": "0.9.3",
3
+ "version": "0.9.4",
4
4
  "description": "My global aliases.",
5
5
  "keywords": [
6
6
  "Utility"
@@ -1,21 +0,0 @@
1
- #!/usr/bin/env node
2
- 'use strict';
3
- const utils = require('../../lib/utils');
4
- console.log(utils.stripIndentation(`
5
- ### [Generated by: @gkalpak/aliases v0.9.3]
6
- ### Run the following commands:
7
-
8
- git config --global commit.gpgSign true
9
- git config --global core.editor "vim"
10
- git config --global credential.helper "manager"
11
- git config --global merge.tool "kdiff3"
12
- git config --global mergetool.kdiff3.path "/path/to/kdiff3"
13
- git config --global mergetool.kdiff3.trustExitCode "false"
14
- git config --global push.default "upstream"
15
- git config --global rebase.autosquash "true"
16
- git config --global rebase.autostash "true"
17
- git config --global tag.gpgSign true
18
- git config --global user.email "kalpakas.g@gmail.com"
19
- git config --global user.name "George Kalpakas"
20
- git config --global user.signingKey "0FF21FC44ECE9F07"
21
- `));