Skip to content

Commit 9c2cafe

Browse files
author
Jeff
committed
Merge remote-tracking branch 'origin/release/v3.0'
* origin/release/v3.0: (67 commits) ensure sagalbot#222 stays closed (sagalbot#828) add guide for reduce and taggable (sagalbot#827) Remove foo bar (sagalbot#826) WIP: v3 – remove onSearch callback prop (sagalbot#811) doc content updates overhaul selecting docs, updated navigation and URL structure bump vue-server-renderer (sagalbot#807) WIP: V3 - Remove index prop, add reduce prop (sagalbot#800) V3/update list items slot (sagalbot#799) update vuepress (sagalbot#797) Update sandbox Add patch from sagalbot#787 update package deps, remove extra dev options V3 - Remove `mutable` class properties plus other misc changes (sagalbot#781) refactor deselect method (sagalbot#768) Sass & Class Renames (sagalbot#759) fix coveralls coverage reporter (sagalbot#766) remove: - express - gitbook - json-loader - markdown-loader - normalize.css - prismjs - vue-resource use test-utils beta-20 fix failing test ... # Conflicts: # docs/gitbook/README.md # docs/homepage/home.html # src/components/Select.vue
2 parents 1cc46b7 + 5740b88 commit 9c2cafe

File tree

116 files changed

+13727
-7222
lines changed

Some content is hidden

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

116 files changed

+13727
-7222
lines changed

.babelrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"presets": ["es2015", "stage-2"],
3-
"plugins": ["transform-runtime"],
2+
"presets": ["@babel/preset-env"],
3+
"plugins": ["@babel/plugin-transform-runtime"],
44
"comments": false
55
}

.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 & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +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-
dist
27+
dev/dist
28+
docs/.vuepress/dist

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
language: node_js
2+
cache: npm
3+
24
node_js:
35
- node
4-
after_success:
5-
- codeclimate-test-reporter < ./test/unit/coverage/lcov.info
6+
7+
script:
8+
- yarn test --coverage --coverageReporters=text-lcov | 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.

build/build.js

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

build/dev-client.js

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

0 commit comments

Comments
 (0)