pmcf 3.11.4 → 3.12.0
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 +2 -2
- package/src/base.mjs +2 -2
- package/types/base.d.mts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.12.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"ip-utilties": "^1.4.9",
|
|
55
|
-
"npm-pkgbuild": "^18.3.
|
|
55
|
+
"npm-pkgbuild": "^18.3.8",
|
|
56
56
|
"pacc": "^4.39.0",
|
|
57
57
|
"package-directory": "^8.1.0"
|
|
58
58
|
},
|
package/src/base.mjs
CHANGED
|
@@ -412,8 +412,8 @@ export class Base {
|
|
|
412
412
|
return this.findService('type="smtp"');
|
|
413
413
|
}
|
|
414
414
|
|
|
415
|
-
expression(expression) {
|
|
416
|
-
return parse(expression, { root: this });
|
|
415
|
+
expression(expression, options) {
|
|
416
|
+
return parse(expression, { root: this, ...options });
|
|
417
417
|
}
|
|
418
418
|
|
|
419
419
|
/**
|