Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
09affb0
ci(commitizen): add Commitizen support
binzcodes Nov 29, 2019
619d506
ci(semantic-release): automate release
binzcodes Nov 29, 2019
822a6ba
style(prettier): modify Prettier config
binzcodes Nov 29, 2019
2099b06
build(netlify): add netlify support
binzcodes Nov 29, 2019
5557c26
feat(ci): add CI pipeline to app
binzcodes Nov 29, 2019
c9f3845
feat(pwa): add pwa config
binzcodes Nov 29, 2019
1a0b418
Merge pull request #2 from binzcodes/feat/pwa
binzcodes Nov 29, 2019
623360b
feat(placeholder-content): add placeholder content
binzcodes Nov 30, 2019
f3b07c4
docs(app-description): update app description
binzcodes Nov 30, 2019
897f942
docs(app-author): update app author
binzcodes Nov 30, 2019
b6bd5d0
refactor(logo.vue): remove unused animations
binzcodes Nov 30, 2019
e32392b
Merge pull request #4 from binzcodes/feat/placeholder-content
binzcodes Nov 30, 2019
3387707
docs(components): documentation on component organisation
binzcodes Dec 4, 2019
a3264a8
refactor(components): refactor components to new structure
binzcodes Dec 4, 2019
d11a32a
refactor(components): restructure components (#6)
binzcodes Dec 4, 2019
88fdb69
chore(merge): merge master into dev
binzcodes Dec 5, 2019
309cbe0
Merge remote-tracking branch 'origin/master' into dev
binzcodes Dec 5, 2019
31bc9ff
ci(config): add jira smart commit support TNS-1
binzcodes Dec 10, 2019
79c9001
fix(security): amend site security headers
binzcodes Dec 10, 2019
15484cc
fix(placeholder): cleanup placeholder cards
binzcodes Dec 10, 2019
ab1cd01
Merge pull request #8 from binzcodes/fix/placeholder
binzcodes Dec 10, 2019
b215d4e
Merge pull request #9 from binzcodes/fix/security-headers
binzcodes Dec 10, 2019
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
76 changes: 0 additions & 76 deletions components/HelloCard.vue

This file was deleted.

22 changes: 0 additions & 22 deletions components/Skill.vue

This file was deleted.

22 changes: 0 additions & 22 deletions components/Skills.vue

This file was deleted.

2 changes: 1 addition & 1 deletion components/placeholder/PlaceholderCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</p>
</div>
</v-card-title>
<app-stack v-bind:stack="cardTechnologyStack"></app-stack>
<app-stack v-bind:stack="cardTechnologyStack" class="pb-8 px-8"></app-stack>
</v-card>
</template>

Expand Down
4 changes: 2 additions & 2 deletions components/placeholder/Stack.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<v-card-actions v-if="stack.length > 0" class="pb-8">
<div v-bind:key="stack.index" v-for="technology in stack" class="mx-auto">
<v-card-actions v-if="stack.length > 0" class="d-flex justify-space-between">
<div v-bind:key="stack.index" v-for="technology in stack">
<app-technology v-bind:technology="technology"></app-technology>
</div>
</v-card-actions>
Expand Down
3 changes: 2 additions & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
X-Frame-Options = "DENY"
X-XSS-Protection = "1; mode=block"
Content-Security-Policy = '''
default-src https:;
default-src https: 'self';
style-src https: 'self' 'unsafe-inline';
script-src https: 'self' 'unsafe-inline';
img-src https: *;
object-src 'none'
'''
Referrer-Policy = "strict-origin-when-cross-origin"
Expand Down
47 changes: 43 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,13 @@
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
"path": "node_modules/cz-conventional-jira-smart-commit/"
}
},
"dependencies": {
"nuxt": "^2.0.0",
"@nuxtjs/pwa": "^3.0.0-0"
"@nuxtjs/pwa": "^3.0.0-0",
"cz-conventional-jira-smart-commit": "^0.1.1",
"nuxt": "^2.0.0"
},
"devDependencies": {
"@nuxtjs/vuetify": "^1.0.0",
Expand Down