Skip to content

Commit

Permalink
Bump fs-extra and @types/fs-extra (#299)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Jun 23, 2023
1 parent c927c62 commit de211b6
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 41 deletions.
73 changes: 35 additions & 38 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@types/async": "^3.2.20",
"@types/chai": "^4.3.5",
"@types/fancy-log": "^2.0.0",
"@types/fs-extra": "^9.0.12",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/js-yaml": "^4.0.3",
"@types/mocha": "^10.0.1",
Expand Down Expand Up @@ -64,7 +64,7 @@
"@actions/core": "^1.10.0",
"@microsoft/powerplatform-cli-wrapper": "^0.1.100",
"date-fns": "^2.30.0",
"fs-extra": "^10.0.0",
"fs-extra": "^11.1.1",
"js-yaml": "^4.1",
"uuid": "^9.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion src/actions/branch-solution/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const currDir = process.cwd();
core.info(`creating branch for solution: ${branchName}...`);

fs.emptyDirSync(solutionTargetFolder);
fs.copySync(solutionFolder, solutionTargetFolder, { recursive: true });
fs.copySync(solutionFolder, solutionTargetFolder);
await git.run(['add', solutionTargetFolder]);
await git.run(['status', '--branch', '--short']);

Expand Down

0 comments on commit de211b6

Please sign in to comment.