-
Notifications
You must be signed in to change notification settings - Fork 446
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14202 from nextcloud/backport/14186/stable31
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
"description": "", | ||
"author": "Joas Schilling <[email protected]>", | ||
"scripts": { | ||
"build": "webpack --node-env production --progress", | ||
"dev": "webpack --node-env development --progress", | ||
"watch": "webpack --node-env development --progress --watch", | ||
"serve": "webpack serve --node-env development --progress --allowed-hosts all", | ||
"build": "node --max-old-space-size=4096 ./node_modules/webpack/bin/webpack.js --node-env production --progress", | ||
"dev": "node --max-old-space-size=4096 ./node_modules/webpack/bin/webpack.js --node-env development --progress", | ||
"watch": "node --max-old-space-size=4096 ./node_modules/webpack/bin/webpack.js --node-env development --progress --watch", | ||
"serve": "node --max-old-space-size=4096 ./node_modules/webpack/bin/webpack.js serve --node-env development --progress --allowed-hosts all", | ||
"typescript:check": "tsc --noEmit", | ||
"typescript:generate": "npx openapi-typescript -t", | ||
"test": "jest", | ||
|