Skip to content

Commit a07cb41

Browse files
author
Jeff
committed
Merge branch 'ft/vuepress-no-cli' into release/v3.0
# Conflicts: # src/mixins/typeAheadPointer.js
2 parents 8a78de6 + d09c2a7 commit a07cb41

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+5039
-1947
lines changed

.codeclimate.yml

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

.csslintrc

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

.eslintignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

.eslintrc

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

.gitignore

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,28 @@
11
.DS_Store
22
node_modules
3-
npm-debug.log
3+
4+
# local env files
5+
.env.local
6+
.env.*.local
7+
8+
# Log files
9+
npm-debug.log*
10+
yarn-debug.log*
11+
yarn-error.log*
12+
13+
# Editor directories and files
414
.idea
15+
.vscode
16+
*.suo
17+
*.ntvs*
18+
*.njsproj
19+
*.sln
20+
*.sw*
21+
22+
# Project specific
23+
coverage
24+
dist
525
test/unit/coverage
6-
.coveralls.yml
7-
.flowconfig
826
package-lock.json
9-
docs/gitbook/_book
10-
docs/node_modules
11-
site
12-
_book
13-
dist
14-
coverage
27+
dev/dist
28+
docs/.vuepress/dist

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: node_js
22
node_js:
33
- node
4-
after_success:
5-
- codeclimate-test-reporter < ./test/unit/coverage/lcov.info
4+
script:
5+
- yarn test | coveralls

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
## Pull Requests
22

3-
Looks like you want to help out on vue-select.. awesome! Here's a couple things to keep in mind when contributing.
3+
Looks like you want to help out on vue-select.. awesome! Here's a few things to keep in mind when contributing.
44

55
1. If your PR contains multiple commits, try to keep those commits succinct, with descriptive messages. This makes it easier to understand your thought process.
6-
2. Don't run the build before submitting. The build is only run and committed immediately before a new release, and submitting a PR with a build included is just more to parse.
6+
2. **Don't run the build** before submitting. The build is only run and committed immediately before a new release.
77
3. If your PR fixes or references an open issue, be sure to reference it in your message.
88
4. If you're adding new functionality, make sure your code has good test coverage.
99

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# vue-select [![Build Status](https://travis-ci.org/sagalbot/vue-select.svg?branch=master)](https://travis-ci.org/sagalbot/vue-select) ![MIT License](https://img.shields.io/github/license/sagalbot/vue-select.svg?style=flat-square) ![Current Release](https://img.shields.io/github/release/sagalbot/vue-select.svg?style=flat-square)
1+
# vue-select [![Build Status](https://travis-ci.org/sagalbot/vue-select.svg?branch=master)](https://travis-ci.org/sagalbot/vue-select) [![Coverage Status](https://coveralls.io/repos/github/sagalbot/vue-select/badge.svg)](https://coveralls.io/github/sagalbot/vue-select) ![MIT License](https://img.shields.io/github/license/sagalbot/vue-select.svg?style=flat-square) ![Current Release](https://img.shields.io/github/release/sagalbot/vue-select.svg?style=flat-square)
22

3-
> A native Vue.js select component that provides similar functionality to Select2 without the overhead of jQuery.
3+
> Everything you wish the native `<select>` element could do, wrapped up into a zero dependency, highly extensible Vue component.
44
55
Want to help out as a primary contributor? [Get in touch](https://github.com/sagalbot/vue-select/issues/581)!
66

book.json

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

build/build-docs.js

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

0 commit comments

Comments
 (0)