@jtff/extract-mission
Version:
extract mission file in a DCS .miz and translate it to json format
18 lines (12 loc) • 336 B
JavaScript
// post-install.js
/**
* Script to run after npm install
*
* Copy selected files to user's directory
*/
const gentlyCopy = require('gently-copy');
const filesToCopy = ['extract-mission.js'];
const userPath = process.env.INIT_CWD || '.';
// Moving files to user's local directory
gentlyCopy(filesToCopy, userPath);