Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump minimist from 1.2.5 to 1.2.6 #1

Closed
wants to merge 39 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
31669fb
tekst 21-jarige
bvescouts Jun 9, 2022
4b89835
deadline-sidebar actual-info leeggemaakt
bvescouts Jun 9, 2022
ac8d12e
Update Jenkinsfile
TinusVL Jun 9, 2022
537e7c6
Ref: #94564, resolved feedback
RicardoInuits Jun 13, 2022
f87a439
Ref: #93218, feedback resolved
RicardoInuits Jun 13, 2022
3122904
Ref: #92084, feedback resolved
RicardoInuits Jun 13, 2022
609cb85
Ref: #86620 feedback resolved
RicardoInuits Jun 13, 2022
ca37e72
Ref: #86702, offline first test for acc
RicardoInuits Jun 16, 2022
75dc515
Enable register service worker
RicardoInuits Jun 16, 2022
31b9ec2
adjusted icons
RicardoInuits Jun 16, 2022
549f5a5
Ref: #86702 adjusted main starting code for tokens
RicardoInuits Jun 16, 2022
6e21c15
Ref: #86702, remove ping library
RicardoInuits Jun 16, 2022
786dc2d
Ref: #86702
RicardoInuits Jun 16, 2022
3402ff5
fix
RicardoInuits Jun 16, 2022
2e0d36e
enable service worker
RicardoInuits Jun 16, 2022
6e44d47
Ref: #86702, Implemented back calls to ping and check for internet. A…
RicardoInuits Jun 20, 2022
a18ba95
Small fix
RicardoInuits Jun 20, 2022
aabf37e
check internet earlier
RicardoInuits Jun 20, 2022
5b8a84e
Removed onLIne function
RicardoInuits Jun 20, 2022
2faf2df
Ref: #86702, wip offline part
RicardoInuits Jun 21, 2022
3d86877
Ref: #86702, wip offline
RicardoInuits Jun 21, 2022
67b1ab7
Ref: #86702, wip update
RicardoInuits Jun 21, 2022
d8becca
Ref: #86702 wip offline
RicardoInuits Jun 22, 2022
0efb4cd
Ref: #96164, Leden selecteren: knopje -alles selecteren- toevoegen
RicardoInuits Jun 22, 2022
050dd2b
Ref: #86702 offline code in comment for production
RicardoInuits Jun 22, 2022
42e496c
Ref: #90612
RicardoInuits Jun 22, 2022
0f31b94
Ref: #90612, fixed loop bug
RicardoInuits Jun 22, 2022
ff0acd6
Ref: #90612, hide members when they are already added
RicardoInuits Jun 23, 2022
ba205a3
Ref: #90612, fixed bug --> some ids contained - and some not
RicardoInuits Jun 23, 2022
f1a9714
Ref: #90612, response is not array of results anymore
RicardoInuits Jun 23, 2022
b886cd0
Adjusted F to V
RicardoInuits Jun 23, 2022
f3c1ee1
Ref: #96404, adjusted logical condition v-if
RicardoInuits Jun 24, 2022
c7b0362
Revert "Ref: #86702 offline code in comment for production"
RicardoInuits Jun 24, 2022
42a4f74
Ref: #86702, Ready to be deployed on acceptance. Made sure the sync b…
RicardoInuits Jun 27, 2022
c0c2820
Ref: #86702, temporary hide and disable the offline use. Later on thi…
RicardoInuits Jun 27, 2022
8c90e41
Ref: #87000, Display data to debug
RicardoInuits Jun 27, 2022
3c7c419
Ref: #94508, afgekeurd knop more visible with a red background. feedb…
RicardoInuits Jun 29, 2022
ee6b14f
Ref: WIP #87000, added basics
RicardoInuits Jun 29, 2022
c7e78ee
Bump minimist from 1.2.5 to 1.2.6
dependabot[bot] Jun 29, 2022
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
35 changes: 17 additions & 18 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,25 @@ pipeline {
}

stage('archive') {
steps {
archiveArtifacts 'frontend.zip'

script{
def artifactory = Artifactory.server 'artifactory'

def uploadSpec = '''{
"files": [
{
"pattern": "frontend.zip",
"target": "kampvisum-frontend/${BRANCH_NAME}/${BUILD_ID}/"
}
]
}'''

def buildInfo = artifactory.upload spec: uploadSpec

artifactory.publishBuildInfo buildInfo
when {
anyOf {
branch "production"
branch "staging"
}
}
steps {
rtUpload (
serverId: 'artifactory',
spec: '''{
"files": [
{
"pattern": "frontend.zip",
"target": "kampvisum-frontend/${BRANCH_NAME}/${BUILD_ID}/"
}
]
}'''
)
}
}

stage('deploy') {
Expand Down
Loading