mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-21 10:45:20 -04:00
Merge pull request #290 from SISheogorath/feature/build-commands
Split frontend and backend build
This commit is contained in:
commit
4552085ae0
1 changed files with 4 additions and 2 deletions
|
@ -12,8 +12,10 @@
|
||||||
"standard": "echo 'standard is no longer being used, use `npm run eslint` instead!' && exit 1",
|
"standard": "echo 'standard is no longer being used, use `npm run eslint` instead!' && exit 1",
|
||||||
"dev": "webpack --config webpack.dev.js --progress --colors --watch",
|
"dev": "webpack --config webpack.dev.js --progress --colors --watch",
|
||||||
"heroku-prebuild": "bin/heroku",
|
"heroku-prebuild": "bin/heroku",
|
||||||
"build": "webpack --config webpack.prod.js --progress --colors --bail",
|
"build": "npm run-script build-backend && npm run-script build-frontend",
|
||||||
"start": "tsc && sequelize db:migrate && node built/lib/app.js"
|
"build-backend": "tsc",
|
||||||
|
"build-frontend": "webpack --config webpack.prod.js --progress --colors --bail",
|
||||||
|
"start": "sequelize db:migrate && node built/lib/app.js"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@passport-next/passport-openid": "^1.0.0",
|
"@passport-next/passport-openid": "^1.0.0",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue