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:
parent
5cf2fe9583
commit
ef90b8e231
1 changed files with 1 additions and 1 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue