git.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. function path() {
  7. const data = _interopRequireWildcard(require('path'));
  8. path = function () {
  9. return data;
  10. };
  11. return data;
  12. }
  13. function _execa() {
  14. const data = _interopRequireDefault(require('execa'));
  15. _execa = function () {
  16. return data;
  17. };
  18. return data;
  19. }
  20. function _interopRequireDefault(obj) {
  21. return obj && obj.__esModule ? obj : {default: obj};
  22. }
  23. function _getRequireWildcardCache() {
  24. if (typeof WeakMap !== 'function') return null;
  25. var cache = new WeakMap();
  26. _getRequireWildcardCache = function () {
  27. return cache;
  28. };
  29. return cache;
  30. }
  31. function _interopRequireWildcard(obj) {
  32. if (obj && obj.__esModule) {
  33. return obj;
  34. }
  35. if (obj === null || (typeof obj !== 'object' && typeof obj !== 'function')) {
  36. return {default: obj};
  37. }
  38. var cache = _getRequireWildcardCache();
  39. if (cache && cache.has(obj)) {
  40. return cache.get(obj);
  41. }
  42. var newObj = {};
  43. var hasPropertyDescriptor =
  44. Object.defineProperty && Object.getOwnPropertyDescriptor;
  45. for (var key in obj) {
  46. if (Object.prototype.hasOwnProperty.call(obj, key)) {
  47. var desc = hasPropertyDescriptor
  48. ? Object.getOwnPropertyDescriptor(obj, key)
  49. : null;
  50. if (desc && (desc.get || desc.set)) {
  51. Object.defineProperty(newObj, key, desc);
  52. } else {
  53. newObj[key] = obj[key];
  54. }
  55. }
  56. }
  57. newObj.default = obj;
  58. if (cache) {
  59. cache.set(obj, newObj);
  60. }
  61. return newObj;
  62. }
  63. /**
  64. * Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
  65. *
  66. * This source code is licensed under the MIT license found in the
  67. * LICENSE file in the root directory of this source tree.
  68. *
  69. */
  70. const findChangedFilesUsingCommand = async (args, cwd) => {
  71. let result;
  72. try {
  73. result = await (0, _execa().default)('git', args, {
  74. cwd
  75. });
  76. } catch (e) {
  77. // TODO: Should we keep the original `message`?
  78. e.message = e.stderr;
  79. throw e;
  80. }
  81. return result.stdout
  82. .split('\n')
  83. .filter(s => s !== '')
  84. .map(changedPath => path().resolve(cwd, changedPath));
  85. };
  86. const adapter = {
  87. findChangedFiles: async (cwd, options) => {
  88. const changedSince =
  89. options && (options.withAncestor ? 'HEAD^' : options.changedSince);
  90. const includePaths = (
  91. (options && options.includePaths) ||
  92. []
  93. ).map(absoluteRoot => path().normalize(path().relative(cwd, absoluteRoot)));
  94. if (options && options.lastCommit) {
  95. return findChangedFilesUsingCommand(
  96. ['show', '--name-only', '--pretty=format:', 'HEAD'].concat(
  97. includePaths
  98. ),
  99. cwd
  100. );
  101. }
  102. if (changedSince) {
  103. const [committed, staged, unstaged] = await Promise.all([
  104. findChangedFilesUsingCommand(
  105. ['diff', '--name-only', `${changedSince}...HEAD`].concat(
  106. includePaths
  107. ),
  108. cwd
  109. ),
  110. findChangedFilesUsingCommand(
  111. ['diff', '--cached', '--name-only'].concat(includePaths),
  112. cwd
  113. ),
  114. findChangedFilesUsingCommand(
  115. ['ls-files', '--other', '--modified', '--exclude-standard'].concat(
  116. includePaths
  117. ),
  118. cwd
  119. )
  120. ]);
  121. return [...committed, ...staged, ...unstaged];
  122. }
  123. const [staged, unstaged] = await Promise.all([
  124. findChangedFilesUsingCommand(
  125. ['diff', '--cached', '--name-only'].concat(includePaths),
  126. cwd
  127. ),
  128. findChangedFilesUsingCommand(
  129. ['ls-files', '--other', '--modified', '--exclude-standard'].concat(
  130. includePaths
  131. ),
  132. cwd
  133. )
  134. ]);
  135. return [...staged, ...unstaged];
  136. },
  137. getRoot: async cwd => {
  138. const options = ['rev-parse', '--show-cdup'];
  139. try {
  140. const result = await (0, _execa().default)('git', options, {
  141. cwd
  142. });
  143. return path().resolve(cwd, result.stdout);
  144. } catch {
  145. return null;
  146. }
  147. }
  148. };
  149. var _default = adapter;
  150. exports.default = _default;