|
|
|
|
|
by hoorayimhelping
3375 days ago
|
|
I script it that way and then add a makefile on top of it so that it's conventional and handles things like envvar setting. build:
NODE_ENV=production yarn build:server
NODE_ENV=production yarn build:client
test:
NODE_ENV=test yarn test
|
|