В package.json scripts:
, у меня есть
...
"prestart": "cd client && yarn build",
"start": "node server",
"heroku-postbuild": "cd client && yarn build"
},
На локальном компьютере я хочу сослаться на "heroku-postbuild"
в "prestart"
для создания веб-пакета в подпапке перед запуском узла сервера:
...
"prestart": "\"yarn run heroku-postbuild\"",
"start": "node server",
"heroku-postbuild": "cd client && yarn build"
},
yarn start
возвращает
yarn run v1.3.2
$ "yarn run heroku-postbuild"
/bin/sh: 1: yarn run heroku-postbuild: not found
error Command failed with exit code 127.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
"heroku-postbuild"
зарезервировано только для героку?