diff --git a/scripts/release.ts b/scripts/release.ts index 26032cf5..90a29e4a 100644 --- a/scripts/release.ts +++ b/scripts/release.ts @@ -4,5 +4,9 @@ import shell from 'shelljs'; const options = process.argv.slice(2).join(' '); +shell.cp(['README.md', 'LICENSE'], 'packages/wdio-electron-service'); +shell.cp(['LICENSE'], 'packages/@wdio_electron-utils'); +shell.cp(['LICENSE'], 'packages/@wdio_electron-types'); + shell.exec(`pnpm run release -- ${options}`); shell.exec(`release-it -VV ${options}`);