Created
August 2, 2018 06:09
-
-
Save qodunpob/2dbb499efbd28c19b3470e35a958b637 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* creating build files copies */ | |
spawnSync('cp', ['-r', 'lib', 'temp/lib'], getSpawnOptions(rootDir)); | |
spawnSync('cp', ['package.json', 'temp/package.json'], getSpawnOptions(rootDir)); | |
spawnSync('cp', ['package-lock.json', 'temp/package-lock.json'], getSpawnOptions(rootDir)); | |
spawnSync('cp', ['README.md', 'temp/README.md'], getSpawnOptions(rootDir)); | |
/* indexing the build files */ | |
spawnSync('git', ['add', '--all'], getSpawnOptions(tempDir)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment