This commit is contained in:
pavelbannov 2020-01-13 15:38:44 +03:00
parent 5f150ed505
commit d6513a3291
2 changed files with 5 additions and 5 deletions

8
build/Jenkinsfile vendored
View File

@ -33,22 +33,22 @@ pipeline {
stages {
stage('Components') {
steps {
bat 'build\\scripts\\components.sh'
sh 'build\\scripts\\components.sh'
}
}
stage('Common') {
steps {
bat 'build\\scripts\\common.sh'
sh 'build\\scripts\\common.sh'
}
}
stage('Client') {
steps {
bat 'build\\scripts\\client.sh'
sh 'build\\scripts\\client.sh'
}
}
stage('People') {
steps {
bat 'build\\scripts\\people.sh'
sh 'build\\scripts\\people.sh'
}
}
}

View File

@ -1,2 +1,2 @@
yarn.cmd install --cwd web/ASC.Web.Components --frozen-lockfile
yarn install --cwd web/ASC.Web.Components --frozen-lockfile
yarn link --cwd packages/asc-web-components