Skip to content

Commit 20112e7

Browse files
committed
build(build process): setup CI
1 parent 6717691 commit 20112e7

File tree

4 files changed

+6023
-61
lines changed

4 files changed

+6023
-61
lines changed

.travis.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
sudo: false
2+
language: node_js
3+
cache:
4+
directories:
5+
- node_modules
6+
notifications:
7+
email: false
8+
node_js:
9+
- '12'
10+
before_install:
11+
- npm i -g npm@^6.10.0
12+
before_script:
13+
- npm prune
14+
script:
15+
- npm run test
16+
- npm run build
17+
after_success:
18+
- npm run semantic-release

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# vue-router-middleware-plugin
22

3+
[![npm version](https://badge.fury.io/js/vue-router-middleware-plugin.svg)](https://badge.fury.io/js/vue-router-middleware-plugin)
4+
35
A vue.js plugin to implement a middleware pipeline between your routes.
46

57
It can be used to guard protected routes or to request an API to populate the store before a route is loaded.

0 commit comments

Comments
 (0)