Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

npm-copy-files

sampathmse1ISC1.0.0

Copy only specific extension files to the desire location

readme

You can copy a files of specific extension or ignore files of specific extension. This helps when you want to copy your folder structure to output directory when you are using Typescript.

Usage :

node ./node_modules/npm-copy-files ./copyFileConfig.json

copyFileConfig.json

{ 
    "source": "./test/test1",
    "target": "./testx",
    "include": [],
    "exclude": [".ts"]
}