gitsheets 0.21.4 → 0.21.5

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.
@@ -104,9 +104,9 @@ exports.handler = async function singerTarget({
104
104
  console.log(`${type}\t${stream}`, message);
105
105
 
106
106
 
107
- // ignore state for now
108
- if (type == 'STATE') {
109
- console.warn('ignoring STATE message');
107
+ // ignore unhandled message types for now
108
+ if (type == 'STATE' || type == 'ACTIVATE_VERSION') {
109
+ console.warn(`ignoring ${type} message`);
110
110
  continue;
111
111
  }
112
112
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gitsheets",
3
- "version": "0.21.4",
3
+ "version": "0.21.5",
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": {