Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ npm run webdriver:start
# in another terminal
npm run e2e:live
```
### run client api definition generation
```bash
npm run build:apiDef
```
# Azure Deploy
* You can set an environment variable for azure app deployment password
Set-Item -path env:AzureAppPass -value passwordhere
Expand Down
6 changes: 4 additions & 2 deletions src/AspNetCoreSpa.Web/ClientApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"start": "ng serve",
"build": "ng build --prod",
"build:ssr": "npm run build --project=ssr",
"build:apiDef": "nswag run ../NSwagGenerator.nswag /runtime:NetCore21",
"lint": "ng lint",
"e2e": "ng e2e",
"test": "jest",
Expand Down Expand Up @@ -65,7 +66,8 @@
"ts-node": "7.0.0",
"tslint": "5.11.0",
"typescript": "2.9.2",
"webpack-bundle-analyzer": "2.13.1"
"webpack-bundle-analyzer": "2.13.1",
"nswag": "11.18.1"
},
"jest": {
"preset": "jest-preset-angular",
Expand All @@ -78,4 +80,4 @@
}
},
"license": "MIT"
}
}
Loading