Skip to content

Commit 741c044

Browse files
authored
Merge pull request #1654 from shentao/next-alpha2
Prep and Publish v3.beta1
2 parents 218045f + 7fa54f7 commit 741c044

31 files changed

+14513
-50
lines changed

.circleci/config.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
# specify the version you desire here
6+
- image: cimg/node:12.22.12
7+
8+
# Specify service dependencies here if necessary
9+
# CircleCI maintains a library of pre-built images
10+
# documented at https://circleci.com/docs/2.0/circleci-images/
11+
# - image: circleci/mongo:3.4.4
12+
13+
working_directory: ~/repo
14+
15+
steps:
16+
- checkout
17+
18+
# Download and cache dependencies
19+
- restore_cache:
20+
keys:
21+
- v1-dependencies-{{ checksum "package.json" }}
22+
# fallback to using the latest cache if no exact match is found
23+
- v1-dependencies-
24+
25+
- run: yarn install
26+
27+
- save_cache:
28+
paths:
29+
- node_modules
30+
key: v1-dependencies-{{ checksum "package.json" }}
31+
32+
# run tests!
33+
- run: npm test
34+
35+
# To reeneable that the lib needs an account on codecov
36+
# - run:
37+
# name: Send code coverage
38+
# command: './node_modules/.bin/codecov'

.github/ISSUE_TEMPLATE.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
<!--
2-
Please make sure to read the readme before submitting an issue.
2+
Please make sure to read the Docs:
3+
4+
https://vue-multiselect.js.org/
5+
6+
before submitting an issue.
37
48
IMPORTANT: Please use the following jsfiddle to provide a reproduction of your problem
9+
10+
https://jsfiddle.net/mattelen/8cyt3hrn/4/
11+
512
Issues without a working fiddle are generally much harder to solve and usually take much more time to actually do it.
613
-->
714

.github/dependabot.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: daily
7+
time: "04:00"
8+
open-pull-requests-limit: 10
9+
ignore:
10+
- dependency-name: "@vue/cli-plugin-babel"
11+
versions:
12+
- 4.5.11
13+
- dependency-name: webpack-bundle-analyzer
14+
versions:
15+
- 4.4.0
16+
- dependency-name: semver
17+
versions:
18+
- 7.3.4
19+
- dependency-name: cssnano
20+
versions:
21+
- 4.1.10

.github/funding.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [shentao, akki-jat, mattelen]

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ selenium-debug.log
55
tests/unit/coverage
66
tests/e2e/reports
77
.idea/
8-
dist/

README.md

+3-13
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,24 @@ Visit: [vue-multiselect.js.org](https://vue-multiselect.js.org/#sub-getting-star
88

99
## Sponsors
1010

11-
### Gold
12-
13-
<p align="center">
14-
<a href="https://vuejs.amsterdam/?utm_source=newsletter&utm_medium=logo&utm_campaign=vuejs-newsletter" target="_blank">
15-
<img src="https://cdn.discordapp.com/attachments/793583797454503976/793583831369646120/vuejsamsterdam.png" alt="Vuejs Amsterdam" width="380px">
16-
</a>
17-
</p>
1811
<p align="center">
19-
<a href="https://theroadtoenterprise.com/?utm_source=newsletter&utm_medium=logo&utm_campaign=vuejs-newsletter" target="_blank">
20-
<img src="https://cdn.discordapp.com/attachments/793583797454503976/809062891420123166/logo.png" alt="Vue - The Road To Enterprise" width="380px">
12+
<a href="https://getform.io/" target="_blank">
13+
<img src="https://cdn.discordapp.com/attachments/1002927810710605875/1034915542596845728/getform.png" alt="Get Form" width="240px">
2114
</a>
2215
</p>
16+
2317
<p align="center">
2418
<a href="https://suade.org/" target="_blank">
2519
<img src="https://tinyurl.com/suadelogo" alt="Suade Labs" width="200px">
2620
</a>
2721
</p>
2822

29-
### Silver
30-
3123
<p align="center">
3224
<a href="https://www.storyblok.com/developers?utm_source=newsletter&utm_medium=logo&utm_campaign=vuejs-newsletter" target="_blank">
3325
<img src="https://a.storyblok.com/f/51376/3856x824/fea44d52a9/colored-full.png" alt="Storyblok" width="240px">
3426
</a>
3527
</p>
3628

37-
### Bronze
38-
3929
<p align="center">
4030
<a href="https://www.vuemastery.com/" target="_blank">
4131
<img src="https://cdn.discordapp.com/attachments/258614093362102272/557267759130607630/Vue-Mastery-Big.png" alt="Vue Mastery logo" width="180px">

0 commit comments

Comments
 (0)