UNPKG

wix-style-react

Version:
14 lines (10 loc) 381 B
const execa = require('execa'); module.exports = function() { const patchCJS = execa.command( `stc --srcDir=./src --stcss=true --cjs=false --outDir=./dist/src --useNamespaceReference`, ); const patchES = execa.command( `stc --srcDir=./src --stcss=true --cjs=false --outDir=./dist/es/src --useNamespaceReference`, ); return Promise.all([patchCJS, patchES]); };