You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

copy-readme.js 247B

12345678910
  1. /* eslint-disable */
  2. const fs = require('fs')
  3. const filesToCopy = ['README.md', 'CHANGELOG.md', 'LICENSE.md', 'card-repo.png']
  4. filesToCopy.forEach((file) => {
  5. fs.copyFile(`../../${file}`, `./${file}`, (err) => {
  6. if (err) throw err
  7. })
  8. })