Skip to content

Commit

Permalink
Merge pull request #1654 from shentao/next-alpha2
Browse files Browse the repository at this point in the history
Prep and Publish v3.beta1
  • Loading branch information
mattelen authored Feb 3, 2023
2 parents 218045f + 7fa54f7 commit 741c044
Show file tree
Hide file tree
Showing 31 changed files with 14,513 additions and 50 deletions.
38 changes: 38 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: cimg/node:12.22.12

# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4

working_directory: ~/repo

steps:
- checkout

# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-

- run: yarn install

- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}

# run tests!
- run: npm test

# To reeneable that the lib needs an account on codecov
# - run:
# name: Send code coverage
# command: './node_modules/.bin/codecov'
9 changes: 8 additions & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
<!--
Please make sure to read the readme before submitting an issue.
Please make sure to read the Docs:
https://vue-multiselect.js.org/
before submitting an issue.
IMPORTANT: Please use the following jsfiddle to provide a reproduction of your problem
https://jsfiddle.net/mattelen/8cyt3hrn/4/
Issues without a working fiddle are generally much harder to solve and usually take much more time to actually do it.
-->

Expand Down
21 changes: 21 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: daily
time: "04:00"
open-pull-requests-limit: 10
ignore:
- dependency-name: "@vue/cli-plugin-babel"
versions:
- 4.5.11
- dependency-name: webpack-bundle-analyzer
versions:
- 4.4.0
- dependency-name: semver
versions:
- 7.3.4
- dependency-name: cssnano
versions:
- 4.1.10
1 change: 1 addition & 0 deletions .github/funding.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: [shentao, akki-jat, mattelen]
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ selenium-debug.log
tests/unit/coverage
tests/e2e/reports
.idea/
dist/
16 changes: 3 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,34 +8,24 @@ Visit: [vue-multiselect.js.org](https://vue-multiselect.js.org/#sub-getting-star

## Sponsors

### Gold

<p align="center">
<a href="https://vuejs.amsterdam/?utm_source=newsletter&utm_medium=logo&utm_campaign=vuejs-newsletter" target="_blank">
<img src="https://cdn.discordapp.com/attachments/793583797454503976/793583831369646120/vuejsamsterdam.png" alt="Vuejs Amsterdam" width="380px">
</a>
</p>
<p align="center">
<a href="https://theroadtoenterprise.com/?utm_source=newsletter&utm_medium=logo&utm_campaign=vuejs-newsletter" target="_blank">
<img src="https://cdn.discordapp.com/attachments/793583797454503976/809062891420123166/logo.png" alt="Vue - The Road To Enterprise" width="380px">
<a href="https://getform.io/" target="_blank">
<img src="https://cdn.discordapp.com/attachments/1002927810710605875/1034915542596845728/getform.png" alt="Get Form" width="240px">
</a>
</p>

<p align="center">
<a href="https://suade.org/" target="_blank">
<img src="https://tinyurl.com/suadelogo" alt="Suade Labs" width="200px">
</a>
</p>

### Silver

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

### Bronze

<p align="center">
<a href="https://www.vuemastery.com/" target="_blank">
<img src="https://cdn.discordapp.com/attachments/258614093362102272/557267759130607630/Vue-Mastery-Big.png" alt="Vue Mastery logo" width="180px">
Expand Down
Loading

0 comments on commit 741c044

Please sign in to comment.