hg.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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(nodeInterop) {
  24. if (typeof WeakMap !== 'function') return null;
  25. var cacheBabelInterop = new WeakMap();
  26. var cacheNodeInterop = new WeakMap();
  27. return (_getRequireWildcardCache = function (nodeInterop) {
  28. return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
  29. })(nodeInterop);
  30. }
  31. function _interopRequireWildcard(obj, nodeInterop) {
  32. if (!nodeInterop && 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(nodeInterop);
  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 (key !== 'default' && 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 env = {...process.env, HGPLAIN: '1'};
  71. const adapter = {
  72. findChangedFiles: async (cwd, options) => {
  73. var _options$includePaths;
  74. const includePaths =
  75. (_options$includePaths = options.includePaths) !== null &&
  76. _options$includePaths !== void 0
  77. ? _options$includePaths
  78. : [];
  79. const args = ['status', '-amnu'];
  80. if (options.withAncestor) {
  81. args.push('--rev', 'min((!public() & ::.)+.)^');
  82. } else if (options.changedSince) {
  83. args.push('--rev', `ancestor(., ${options.changedSince})`);
  84. } else if (options.lastCommit === true) {
  85. args.push('--change', '.');
  86. }
  87. args.push(...includePaths);
  88. let result;
  89. try {
  90. result = await (0, _execa().default)('hg', args, {
  91. cwd,
  92. env
  93. });
  94. } catch (e) {
  95. // TODO: Should we keep the original `message`?
  96. e.message = e.stderr;
  97. throw e;
  98. }
  99. return result.stdout
  100. .split('\n')
  101. .filter(s => s !== '')
  102. .map(changedPath => path().resolve(cwd, changedPath));
  103. },
  104. getRoot: async cwd => {
  105. try {
  106. const result = await (0, _execa().default)('hg', ['root'], {
  107. cwd,
  108. env
  109. });
  110. return result.stdout;
  111. } catch {
  112. return null;
  113. }
  114. }
  115. };
  116. var _default = adapter;
  117. exports.default = _default;