mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
Make Make make everything
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
c65a56b0e3
commit
dbd5851f9d
2 changed files with 6 additions and 3 deletions
3
Makefile
3
Makefile
|
|
@ -20,12 +20,15 @@ dependabot: dev-setup npm-update build-js-production compile-handlebars-template
|
||||||
release: appstore create-tag
|
release: appstore create-tag
|
||||||
|
|
||||||
build-js:
|
build-js:
|
||||||
|
npm run dev
|
||||||
cd vue/ && npm run dev
|
cd vue/ && npm run dev
|
||||||
|
|
||||||
build-js-production:
|
build-js-production:
|
||||||
|
npm run build
|
||||||
cd vue/ && npm run build
|
cd vue/ && npm run build
|
||||||
|
|
||||||
watch-js:
|
watch-js:
|
||||||
|
npm run watch
|
||||||
cd vue/ && npm run watch
|
cd vue/ && npm run watch
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
|
|
|
||||||
|
|
@ -6,9 +6,9 @@
|
||||||
"license": "agpl",
|
"license": "agpl",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "webpack --config webpack.dev.js",
|
"dev": "NODE_ENV=development webpack --config webpack.dev.js",
|
||||||
"watch": "webpack --progress --watch --config webpack.dev.js",
|
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
|
||||||
"build": "webpack --progress --hide-modules --config webpack.prod.js",
|
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
|
||||||
"lint": "eslint --ext .js,.vue src",
|
"lint": "eslint --ext .js,.vue src",
|
||||||
"lint:fix": "eslint --ext .js,.vue src --fix",
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
||||||
"stylelint": "stylelint src",
|
"stylelint": "stylelint src",
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue