heroku-postbuild, not heroku-postinstall (#1265)

This commit is contained in:
Christopher DeCairos 2020-03-16 17:01:58 -04:00 коммит произвёл GitHub
Родитель 333132dab1
Коммит 6c6246031e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 3 удалений

Просмотреть файл

@ -7,7 +7,7 @@
"bootstrap": "shx rm -rf dist && shx mkdir dist",
"start": "npm run build:dev && run-p server watch:**",
"build": "run-s bootstrap build:**",
"heroku-postbuild": "echo Skip builds on Heroku",
"heroku-postbuild": "npm run build:prod",
"build:prod": "run-s bootstrap build-client:** build-js:prod:**",
"build:dev": "run-s bootstrap build-client:** build-js:dev:**",
"build-js:prod:server": "webpack --config webpack.server.prod.js --display-error-details --colors",
@ -34,8 +34,7 @@
"test": "run-s test:**",
"test:eslint": "eslint --config ./.eslintrc.json \"*.js\" \"*.jsx\" \"js/**/*.js\" \"components/**/*.jsx\" \"pages/**/*.jsx\" \"pages/**/*.js\" webpack.**.js",
"test:scss:styleguide:color": "stylelint \"components/**/*.scss\" \"pages/**/*.scss\" \"scss/**/*.scss\" \"!scss/foundation-styles/_variables.scss\" \"!scss/**/variables.scss\" \"!scss/overrides/_variables.scss\" --syntax scss --config .stylelintrc-colors.js",
"test:scss": "stylelint --config .stylelintrc \"components/**/*.scss\" \"pages/**/*.scss\" \"scss/**/*.scss\" --syntax scss",
"heroku-postinstall": "npm run build:prod"
"test:scss": "stylelint --config .stylelintrc \"components/**/*.scss\" \"pages/**/*.scss\" \"scss/**/*.scss\" --syntax scss"
},
"babel": {
"presets": [