npm-pkgbuild 20.8.12 → 20.8.13

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "npm-pkgbuild",
3
- "version": "20.8.12",
3
+ "version": "20.8.13",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "provenance": false
@@ -414,7 +414,7 @@ export async function* extractFromPackage(options = {}, env = {}) {
414
414
  conflicts: mergeDependencies(result.conflicts, output.conflicts)
415
415
  };
416
416
 
417
- const context = { root: properties };
417
+ const context = { current: properties };
418
418
 
419
419
  const sources = [];
420
420
  expand(content, context).reduce((a, { content, dir }) => {
@@ -107,7 +107,7 @@ program
107
107
  })
108
108
  );
109
109
 
110
- const context = { root: properties };
110
+ const context = { current: properties };
111
111
 
112
112
  const o = new outputFactory(expand(properties, context));
113
113
  const transformer = [
@@ -94,7 +94,7 @@ export class Packager {
94
94
 
95
95
  const context = {
96
96
  ...expandContextDoubbleCurly,
97
- root: properties
97
+ current: properties
98
98
  };
99
99
 
100
100
  const entryProps = { mode: 0o775 };