backend-plus 2.2.3 → 2.2.4
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/backend-plus.js +1 -1
- package/package.json +1 -1
package/lib/backend-plus.js
CHANGED
|
@@ -3112,7 +3112,7 @@ AppBackend.prototype.dumpDbSchemaPartial = async function dumpDbSchemaPartial(pa
|
|
|
3112
3112
|
var list = [];
|
|
3113
3113
|
}
|
|
3114
3114
|
for(var fileName of list){
|
|
3115
|
-
if (fileName.endsWith('-fun.sql')) {
|
|
3115
|
+
if (fileName.endsWith('-fun.sql') && !opts?.commonFunsToDisable?.includes(fileName)) {
|
|
3116
3116
|
common.push(await fs.readFile(Path.join(dirName,fileName), 'utf-8'));
|
|
3117
3117
|
}
|
|
3118
3118
|
}
|
package/package.json
CHANGED