@webqit/webflo 0.20.25 → 0.20.26
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/package.json +1 -1
- package/src/build-pi/index.js +1 -1
package/package.json
CHANGED
package/src/build-pi/index.js
CHANGED
|
@@ -379,7 +379,7 @@ async function generateWorkerScript({ $context, bootstrap, ...restParams }) {
|
|
|
379
379
|
}, [[], []]);
|
|
380
380
|
if (patterns.length) {
|
|
381
381
|
function scanDir(dir) {
|
|
382
|
-
Fs.readdirSync(dir).reduce((result, f) => {
|
|
382
|
+
return Fs.readdirSync(dir).reduce((result, f) => {
|
|
383
383
|
const resource = Path.join(dir, f);
|
|
384
384
|
if (f.startsWith('.')) return result;
|
|
385
385
|
return result.concat(
|