I'm deploying a Web App into Azure with Appveyor, but all componentes is compiled with grunt, build and deploy is succesfuly, the problem is the bower_components folder and generated files and folders by grunt not deployed.
My code:
e\bower.json
- Sigma.Website\node_modules -> Sigma.Website\package.json
install:
- npm install -g grunt-cli 1> nul
before_build:
- ps: .\CreateBuildTxt.ps1
- nuget restore
- cmd: |
cd Sigma.Website
npm install
grunt
cd ..
build:
publish_wap: true
#Deployment configuration
deploy:
- provider: WebDeploy
server:
https://sigma.scm.azurewebsites.net:443/msdeploy.axd?site=sigma
website: sigma
username: $sigma
password:
secure: xxxxxx
ntlm: false
remove_files: false
app_offline: false
artifact: Sigma.Website
on:
branch: master
notifications:
- provider: Slack
incoming_webhook: xxxx
channel: '#sigma-dev'
on_build_success: true
on_build_failure: true