ponder 0.9.0 → 0.9.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/dist/bin/ponder.js +2 -2
- package/dist/bin/ponder.js.map +1 -1
- package/package.json +1 -1
- package/src/build/index.ts +2 -2
package/dist/bin/ponder.js
CHANGED
|
@@ -3454,7 +3454,7 @@ var createBuild = async ({
|
|
|
3454
3454
|
},
|
|
3455
3455
|
async executeIndexingFunctions() {
|
|
3456
3456
|
const files = glob.sync(indexingPattern, {
|
|
3457
|
-
ignore:
|
|
3457
|
+
ignore: apiPattern
|
|
3458
3458
|
});
|
|
3459
3459
|
const executeResults = await Promise.all(
|
|
3460
3460
|
files.map(async (file) => ({
|
|
@@ -3724,7 +3724,7 @@ var createBuild = async ({
|
|
|
3724
3724
|
]);
|
|
3725
3725
|
viteNodeRunner.moduleCache.invalidateDepTree(
|
|
3726
3726
|
glob.sync(indexingPattern, {
|
|
3727
|
-
ignore:
|
|
3727
|
+
ignore: apiPattern
|
|
3728
3728
|
})
|
|
3729
3729
|
);
|
|
3730
3730
|
viteNodeRunner.moduleCache.invalidateDepTree(glob.sync(apiPattern));
|