votive 0.2.0 → 0.2.1

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/lib/bundle.js CHANGED
@@ -227,7 +227,6 @@ async function bundle(config, cache) {
227
227
  // Read folders and source files
228
228
  const { folders, sources } = await readSources(config, database, processors)
229
229
 
230
- console.log(123)
231
230
  sourceTime()
232
231
 
233
232
  if(config.verbose) console.info(`${styleText("dim", "build:")} ${styleText("magenta", `found ${sources.length} stale files`)}`)
@@ -40,14 +40,6 @@ async function readSources(config, database, processors) {
40
40
 
41
41
  const [sources, deletedSources] = await Promise.all(reading)
42
42
 
43
- // const sources = readingSourceFiles && (await Promise.all(readingSourceFiles)).filter(a => a)
44
-
45
- console.log({ sources })
46
-
47
- // const deletedSources = await pruneDeletions(config, database, filteredDirents)
48
-
49
- console.log({ deletedSources })
50
-
51
43
  return {
52
44
  folders,
53
45
  sources: [...sources, ...deletedSources]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "votive",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "A file processor.",
5
5
  "homepage": "https://github.com/samlfair/votive#readme",
6
6
  "bugs": {