Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

hg.js 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  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. const includePaths = (options && options.includePaths) || [];
  74. const args = ['status', '-amnu'];
  75. if (options && options.withAncestor) {
  76. args.push('--rev', `min((!public() & ::.)+.)^`);
  77. } else if (options && options.changedSince) {
  78. args.push('--rev', `ancestor(., ${options.changedSince})`);
  79. } else if (options && options.lastCommit === true) {
  80. args.push('--change', '.');
  81. }
  82. args.push(...includePaths);
  83. let result;
  84. try {
  85. result = await (0, _execa().default)('hg', args, {
  86. cwd,
  87. env
  88. });
  89. } catch (e) {
  90. // TODO: Should we keep the original `message`?
  91. e.message = e.stderr;
  92. throw e;
  93. }
  94. return result.stdout
  95. .split('\n')
  96. .filter(s => s !== '')
  97. .map(changedPath => path().resolve(cwd, changedPath));
  98. },
  99. getRoot: async cwd => {
  100. try {
  101. const result = await (0, _execa().default)('hg', ['root'], {
  102. cwd,
  103. env
  104. });
  105. return result.stdout;
  106. } catch {
  107. return null;
  108. }
  109. }
  110. };
  111. var _default = adapter;
  112. exports.default = _default;