Skip to content

Commit

Permalink
Merge pull request #2950 from patrick-rodgers/version-4
Browse files Browse the repository at this point in the history
small fixes to build system
  • Loading branch information
patrick-rodgers authored Feb 27, 2024
2 parents 5d39286 + abb0a17 commit 121dae8
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 16 deletions.
38 changes: 25 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"@azure/msal-browser": "3.5.0",
"@azure/msal-node": "1.18.4",
"@microsoft/microsoft-graph-types": "2.40.0",
"@pnp/buildsystem": "^4.0.0-beta10",
"@pnp/buildsystem": "^4.0.0",
"@pnp/logging":"^3.22.0",
"@types/chai": "4.3.11",
"@types/chai-as-promised": "7.1.8",
Expand Down
2 changes: 1 addition & 1 deletion tools/buildsystem/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pnp/buildsystem",
"version": "4.0.0",
"version": "4.0.1",
"bin": {
"pnpbuild": "bin/buildsystem.js"
},
Expand Down
2 changes: 1 addition & 1 deletion tools/buildsystem/src/behaviors/copy-package-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export function CopyPackageFiles(source: "src" | "built", pattern: string[]): Ti
this.log(`CopyPackageFiles found ${files.length} files for pattern ${stringPattern} in target '${target.tsconfigPath}'`);

for (let i = 0; i < files.length; i++) {
this.log(`CopyPackageFiles found ${files[i]}`, 0);
this.log(`CopyPackageFiles found ${files[i].src}`, 0);
}

await Promise.all(files.map(f => buildCopyFile(f.src, f.dest)));
Expand Down

0 comments on commit 121dae8

Please sign in to comment.