repair Huppy's handling of LICENCE (#2821)

Huppy was expecting `LICENCE`, while the actual filename is now
`LICENCE.md`. This PR fixes the oversight.

### Change Type

- [x] `internal` — Any other changes that don't affect the published
package
This commit is contained in:
Dan Groshev 2024-02-13 15:09:59 +00:00 committed by GitHub
parent 5cf2fe9583
commit ef90b8e231
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,7 +5,7 @@ import { Flow } from '../flow'
import { withWorkingRepo } from '../repo'
import { readJsonIfExists } from '../utils'
const filesToCopyFromRoot = ['.gitignore', '.prettierrc', 'LICENSE']
const filesToCopyFromRoot = ['.gitignore', '.prettierrc', 'LICENSE.md']
const packageDepsToSyncFromRoot = ['typescript', '@types/react', '@types/react-dom']
export const standaloneExamplesBranch = {