Skip to content

Commit

Permalink
Merge branch 'master' into feature/202409_iterationcount
Browse files Browse the repository at this point in the history
# Conflicts:
#	starskydesktop/package-lock.json
  • Loading branch information
qdraw committed Sep 2, 2024
2 parents bfd7890 + c546e7d commit 294cb25
Show file tree
Hide file tree
Showing 8 changed files with 9,321 additions and 86 deletions.
42 changes: 14 additions & 28 deletions documentation/package-lock.json

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

73 changes: 34 additions & 39 deletions starsky-tools/end2end/package-lock.json

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

6 changes: 3 additions & 3 deletions starsky-tools/end2end/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@
"update:yes": "npm run update:install"
},
"devDependencies": {
"@types/node": "^20.14.2",
"@types/node": "^20.14.15",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"cypress": "^13.11.0",
"cypress": "^13.13.2",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-promise": "^6.6.0",
"typescript": "^5.4.5"
}
}
14 changes: 7 additions & 7 deletions starsky-tools/thumbnail/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 starsky-tools/thumbnail/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"p-iteration": "^1.1.8"
},
"devDependencies": {
"@types/node": "^20.14.14",
"@types/node": "^20.14.15",
"concurrently": "^8.2.2",
"typescript": "^5.5.4"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -421,15 +421,16 @@ await _hostFileSystemStorage.WriteStreamAsync(_subPathStorage.ReadStream(subPath
/// </summary>
/// <param name="fullFileParentFolderPath">One folder deeper than where the folder </param>
/// <param name="itemName">blog item name</param>
/// <param name="renderCopyResult"></param>
/// <param name="renderCopyResult">[[string,bool],[]]</param>
/// <param name="deleteFolderAfterwards"></param>
public async Task GenerateZip(string fullFileParentFolderPath, string itemName,
Dictionary<string, bool>? renderCopyResult,
bool deleteFolderAfterwards = false)
{
ArgumentNullException.ThrowIfNull(renderCopyResult);

var fileNames = renderCopyResult.Where(p => p.Value).Select(p => p.Key).ToList();
// to keep non publish files out use Where(p => p.Value)
var fileNames = renderCopyResult.Select(p => p.Key).ToList();

var slugItemName = GenerateSlugHelper.GenerateSlug(itemName, true);
var filePaths = fileNames
Expand Down
Loading

0 comments on commit 294cb25

Please sign in to comment.