Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit fb3ed4b

Browse files
authored
Merge pull request #339 from kshefchek/1.0.3
patch release 1.0.3
2 parents 4c1f66c + a136423 commit fb3ed4b

37 files changed

+1063
-822
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ stages:
77
- test
88
jobs:
99
include:
10-
- stage: test
10+
- stage: test and lint
1111
script:
1212
- npm run test:unit
13+
- stage: test and lint
14+
script:
15+
- npm run lint

package-lock.json

Lines changed: 15 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "monarch-ui",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"private": true,
55
"scripts": {
66
"dev": "npm run serve",

public/news.yaml

Lines changed: 0 additions & 68 deletions
This file was deleted.

src/App.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<template>
22
<div
33
id="app"
4-
class="page-wrapper">
5-
4+
class="page-wrapper"
5+
>
66
<div class="content-wrapper">
7-
<monarch-navbar/>
7+
<monarch-navbar />
88
<div class="main-wrapper">
9-
<router-view/>
9+
<router-view />
1010
</div>
1111
</div>
1212

1313
<div class="footer-wrapper">
1414
<monarch-footer
15-
:compact="useCompactFooter"/>
15+
:compact="useCompactFooter"
16+
/>
1617
</div>
17-
1818
</div>
1919
</template>
2020

0 commit comments

Comments
 (0)