vtb-appit 0.0.14 → 0.0.17
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/appit.js +2 -2
- package/package.json +1 -1
package/appit.js
CHANGED
|
@@ -56,6 +56,8 @@ class Appit {
|
|
|
56
56
|
await this.accommodations();
|
|
57
57
|
await this.schemes();
|
|
58
58
|
|
|
59
|
+
this.history.updatedAt = new Date().getTime();
|
|
60
|
+
|
|
59
61
|
fs.writeFileSync(this.historyPath, JSON.stringify(this.history));
|
|
60
62
|
|
|
61
63
|
return true;
|
|
@@ -237,8 +239,6 @@ class Appit {
|
|
|
237
239
|
});
|
|
238
240
|
};
|
|
239
241
|
|
|
240
|
-
console.log(result);
|
|
241
|
-
|
|
242
242
|
return result;
|
|
243
243
|
}
|
|
244
244
|
|