Skip to content

Commit 3940106

Browse files
authored
Add typescript file generation to the resources build process (#1909)
* Add typescript file generation to the resources build process * minor updates * replaced tabs with spaces * added eof * changed line ending type * cleaned up * Removing portal-resources generated file * Adding gulp script to the .travis.yml for build to succeed * switching order of server and client build
1 parent 874b595 commit 3940106

File tree

4 files changed

+25
-782
lines changed

4 files changed

+25
-782
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ node_modules/
5959
npm-debug.log
6060
testem.log
6161
/typings
62-
62+
portal-resources.ts
6363
# e2e
6464
/e2e/*.js
6565
/e2e/*.map

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ before_script:
55
- npm install -g --silent @angular/[email protected]
66
- npm install -g --silent yarn
77
script:
8-
- cd AzureFunctions.AngularClient && yarn install && ng build -prod && cd ../server && yarn install && tsc
8+
- cd server && yarn install && yarn run gulp build-all && tsc && cd ../AzureFunctions.AngularClient && yarn install && ng build -prod

0 commit comments

Comments
 (0)