I am creating build of angular 4 project using Jenkins and then publishing build on ftp.
Following is command that i am running
npm install && npm run dev
I have created dev as following in package.json.
"dev": "ng build"
When jenkins build run, build is created and uploaded on the ftp. All the content is uploaded on the ftp except the content which is in angular-cli.json assets
"assets": [
"assets",
"favicon.ico",
".htaccess"
],
Assets, favicon and htaccess files are not getting uploaded on the ftp.