zarro 1.187.0 → 1.189.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.
@@ -36,7 +36,7 @@
36
36
  * @param ttlSeconds
37
37
  */
38
38
  write(key, value, ttlSeconds) {
39
- this._store[key] = new CacheItem(value, Date.now() + ttlSeconds);
39
+ this._store[key] = new CacheItem(value, Date.now() + ttlSeconds * 1000);
40
40
  }
41
41
  /**
42
42
  * Runs the generator if there is no cache item with
package/index.js CHANGED
@@ -192,7 +192,7 @@ async function transpileTypeScriptFiles(
192
192
  return;
193
193
  }
194
194
 
195
- importTypeScript();
195
+ importTypeScript(toTranspile);
196
196
 
197
197
  try {
198
198
  const
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zarro",
3
- "version": "1.187.0",
3
+ "version": "1.189.0",
4
4
  "description": "Some glue to make gulp easier, perhaps even zero- or close-to-zero-conf",
5
5
  "bin": {
6
6
  "zarro": "index.js"