gitmark 0.0.58 → 0.0.59

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.
package/bin/git-mark-list CHANGED
@@ -37,11 +37,13 @@ const options = {
37
37
  repo: './',
38
38
  fields: ['subject', 'authorName', 'authorDate'],
39
39
  execOptions: { maxBuffer: 1000 * 1024 },
40
- number: 1000,
40
+ number: 1000000,
41
41
  fields: ['hash', 'subject', 'authorDate']
42
42
  }
43
43
 
44
44
  function addCryptoToCommit(commit) {
45
+ // console.log('commit', commit)
46
+ if (!commit.hash) return
45
47
  b2 = BigInt('0x' + commit.hash)
46
48
  b3 = BigInt.asUintN(256, b1 + b2)
47
49
  commit.privkey = b1.toString(16)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitmark",
3
- "version": "0.0.58",
3
+ "version": "0.0.59",
4
4
  "description": "gitmark",
5
5
  "main": "index.js",
6
6
  "scripts": {