pmcf 3.10.16 → 3.10.18
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 +4 -1
- package/types/base.d.mts +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmcf",
|
|
3
|
-
"version": "3.10.
|
|
3
|
+
"version": "3.10.18",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"ip-utilties": "^1.4.9",
|
|
55
55
|
"npm-pkgbuild": "^18.2.31",
|
|
56
|
-
"pacc": "^4.
|
|
56
|
+
"pacc": "^4.24.0",
|
|
57
57
|
"package-directory": "^8.1.0"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
package/src/base.mjs
CHANGED
|
@@ -3,7 +3,6 @@ import { allOutputs } from "npm-pkgbuild";
|
|
|
3
3
|
import {
|
|
4
4
|
parse,
|
|
5
5
|
expand,
|
|
6
|
-
tokens,
|
|
7
6
|
baseTypes,
|
|
8
7
|
attributeIterator,
|
|
9
8
|
name_attribute_writable,
|
|
@@ -408,6 +407,10 @@ export class Base {
|
|
|
408
407
|
return this.findService({ type: "smtp" });
|
|
409
408
|
}
|
|
410
409
|
|
|
410
|
+
expression(expression) {
|
|
411
|
+
return parse(expression, { root: this });
|
|
412
|
+
}
|
|
413
|
+
|
|
411
414
|
/**
|
|
412
415
|
*
|
|
413
416
|
* @param {any} filter
|