This commit is contained in:
Ian Clanton-Thuon 2023-05-16 16:20:41 -07:00
Родитель f339e41a69
Коммит be69a0326c
1 изменённых файлов: 20 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,20 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/heft/heft.schema.json",
"extends": "@rushstack/heft-web-rig/profiles/library/config/heft.json",
"eventActions": [
{
"actionId": "copyLicenseToDistFolder",
"actionKind": "copyFiles",
"heftEvent": "post-build",
"copyOperations": [
{
"destinationFolders": ["./dist"],
"sourceFolder": "..",
"includeGlobs": ["LICENSE"]
}
]
}
]
}