c2b5dca63b
* Implemented yarn run deploy, which deploys all packages to npm, with the same version assigned to all of them.
5 lines
162 B
JavaScript
5 lines
162 B
JavaScript
if (process.env.THEATRE_IS_PUBLISHING !== 'true') {
|
|
throw Error(
|
|
`This script may run only when the "deploy" command in monorepo's root is running.`,
|
|
)
|
|
}
|