您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

copy-files.js 234B

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