Skip to content

Commit

Permalink
Adjust build scripts (#1914)
Browse files Browse the repository at this point in the history
* Make build script more platform independent

Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
  • Loading branch information
raimund-schluessler committed Jan 25, 2022
1 parent 4a0d1c5 commit 24a67fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -10,9 +10,9 @@
"private": true,
"homepage": "https://github.com/nextcloud/tasks",
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"lint": "eslint --ext .js,.vue src tests",
"lint:fix": "eslint --ext .js,.vue src tests --fix",
"stylelint": "stylelint 'css/**/*.scss'",
Expand Down
File renamed without changes.

0 comments on commit 24a67fe

Please sign in to comment.