gitsheets 0.21.6 → 0.22.0

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.
@@ -142,7 +142,7 @@ exports.handler = async function upsert({
142
142
 
143
143
  if (existingBlob) {
144
144
  const existingRecord = await inputSheet.readRecord(existingBlob);
145
- inputRecord = deepmerge(inputRecord, existingRecord);
145
+ inputRecord = deepmerge(existingRecord, inputRecord);
146
146
  }
147
147
  }
148
148
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitsheets",
3
- "version": "0.21.6",
3
+ "version": "0.22.0",
4
4
  "description": "A toolkit for using a git repository to store low-volume, high-touch, human-scale data",
5
5
  "main": "lib/GitSheets.js",
6
6
  "scripts": {