UNPKG

azure-ad-auth-react-native

Version:

An React Native module implements Azure AD V2.0 authentication flow

11 lines (10 loc) 392 B
var library = require('../package.json'); var execSync = require('child_process').execSync; var fs = require('fs'); execSync('npm run jsdoc:generate', {stdio: 'inherit'}); if (fs.existsSync('docs')) { execSync('rm -r docs', {stdio: 'inherit'}); } execSync(`mv out/azure-ad-auth-react-native/${library.version}/ docs`, {stdio: 'inherit'}); execSync('rm -rf out/'); execSync('git add docs');