pmcf 3.12.0 → 3.12.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/base.mjs +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "3.12.0",
3
+ "version": "3.12.1",
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.3.8",
56
- "pacc": "^4.39.0",
56
+ "pacc": "^4.39.1",
57
57
  "package-directory": "^8.1.0"
58
58
  },
59
59
  "devDependencies": {
package/src/base.mjs CHANGED
@@ -2,6 +2,7 @@ import { join } from "node:path";
2
2
  import { allOutputs } from "npm-pkgbuild";
3
3
  import {
4
4
  parse,
5
+ globals,
5
6
  expand,
6
7
  attributeIterator,
7
8
  default_attribute,
@@ -413,7 +414,7 @@ export class Base {
413
414
  }
414
415
 
415
416
  expression(expression, options) {
416
- return parse(expression, { root: this, ...options });
417
+ return parse(expression, { root: this, globals, ...options });
417
418
  }
418
419
 
419
420
  /**