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 +0 -1
- package/lib/readSources.js +0 -8
- package/package.json +1 -1
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`)}`)
|
package/lib/readSources.js
CHANGED
|
@@ -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]
|