Skip to content

Commit 11eed27

Browse files
authored
Minor updates to master (already in next) (#281)
* update sass version * remove stalebot config * add github actions * remove duplicated animation * remove travis config
1 parent a8866e0 commit 11eed27

File tree

6 files changed

+132
-121
lines changed

6 files changed

+132
-121
lines changed

.github/stale.yml

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

.github/workflows/test.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: CI
4+
5+
# Controls when the workflow will run
6+
on:
7+
# Triggers the workflow on push or pull request events but only for the master branch
8+
push:
9+
branches: [master, main, next]
10+
pull_request:
11+
branches: [master, main, next]
12+
13+
# Allows you to run this workflow manually from the Actions tab
14+
workflow_dispatch:
15+
16+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17+
jobs:
18+
# This workflow contains a single job called "build"
19+
build:
20+
# The type of runner that the job will run on
21+
runs-on: ubuntu-latest
22+
23+
strategy:
24+
matrix:
25+
node-version: [12]
26+
27+
# Steps represent a sequence of tasks that will be executed as part of the job
28+
steps:
29+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
30+
- name: Checkout
31+
uses: actions/checkout@v2
32+
33+
- name: Use Node.js ${{ matrix.node-version }}
34+
uses: actions/setup-node@v2
35+
with:
36+
node-version: ${{ matrix.node-version }}
37+
38+
- name: Remove demo folder
39+
run: rm -rdf demo
40+
41+
- name: Install Yarn
42+
run: npm install -g yarn
43+
44+
- name: Get yarn cache directory path
45+
id: yarn-cache-dir-path
46+
run: echo "::set-output name=dir::$(yarn cache dir)"
47+
48+
- uses: actions/cache@v2
49+
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
50+
with:
51+
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
52+
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
53+
restore-keys: |
54+
${{ runner.os }}-yarn-
55+
56+
- name: Install dependencies
57+
run: yarn --frozen-lockfile
58+
59+
- name: Install Codecov
60+
run: yarn global add codecov
61+
62+
- name: Lint
63+
run: yarn lint:no-fix
64+
65+
- name: Test
66+
run: yarn test
67+
68+
- name: Upload to Codecov
69+
uses: codecov/codecov-action@v2.1.0

.travis.yml

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@
6666
"rollup": "^2.11.2",
6767
"rollup-plugin-commonjs": "^10.1.0",
6868
"rollup-plugin-filesize": "^9.0.0",
69-
"rollup-plugin-sass": "^1.2.2",
69+
"rollup-plugin-sass": "^1.2.9",
7070
"rollup-plugin-terser": "^7.0.2",
7171
"rollup-plugin-typescript2": "^0.27.1",
7272
"rollup-plugin-vue": "<6.0.0",
73-
"sass": "^1.26.5",
73+
"sass": "^1.43.2",
7474
"sass-loader": "^10.0.2",
7575
"typescript": "^4.0.2",
7676
"vue": "^2.6.11",

src/scss/animations/_bounce.scss

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -164,21 +164,6 @@ $trans-cubic-bezier: cubic-bezier(0.215, 0.61, 0.355, 1);
164164
}
165165
}
166166

167-
@keyframes bounceOutDown {
168-
20% {
169-
transform: translate3d(0, 10px, 0);
170-
}
171-
40%,
172-
45% {
173-
opacity: 1;
174-
transform: translate3d(0, -20px, 0);
175-
}
176-
to {
177-
opacity: 0;
178-
transform: translate3d(0, 2000px, 0);
179-
}
180-
}
181-
182167
.#{$vt-namespace}__bounce-enter-active {
183168
&.top-left,
184169
&.bottom-left {

yarn.lock

Lines changed: 61 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -2778,6 +2778,14 @@ anymatch@~3.1.1:
27782778
normalize-path "^3.0.0"
27792779
picomatch "^2.0.4"
27802780

2781+
anymatch@~3.1.2:
2782+
version "3.1.2"
2783+
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
2784+
integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
2785+
dependencies:
2786+
normalize-path "^3.0.0"
2787+
picomatch "^2.0.4"
2788+
27812789
aproba@^1.0.3, aproba@^1.1.1:
27822790
version "1.2.0"
27832791
resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a"
@@ -3094,7 +3102,7 @@ babel-preset-jest@^24.9.0:
30943102
"@babel/plugin-syntax-object-rest-spread" "^7.0.0"
30953103
babel-plugin-jest-hoist "^24.9.0"
30963104

3097-
babel-runtime@^6.22.0, babel-runtime@^6.23.0, babel-runtime@^6.26.0:
3105+
babel-runtime@^6.22.0, babel-runtime@^6.26.0:
30983106
version "6.26.0"
30993107
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
31003108
integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
@@ -3747,7 +3755,22 @@ check-types@^8.0.3:
37473755
optionalDependencies:
37483756
fsevents "~2.1.2"
37493757

3750-
chokidar@^2.0.0, chokidar@^2.1.8:
3758+
"chokidar@>=3.0.0 <4.0.0":
3759+
version "3.5.2"
3760+
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75"
3761+
integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==
3762+
dependencies:
3763+
anymatch "~3.1.2"
3764+
braces "~3.0.2"
3765+
glob-parent "~5.1.2"
3766+
is-binary-path "~2.1.0"
3767+
is-glob "~4.0.1"
3768+
normalize-path "~3.0.0"
3769+
readdirp "~3.6.0"
3770+
optionalDependencies:
3771+
fsevents "~2.3.2"
3772+
3773+
chokidar@^2.1.8:
37513774
version "2.1.8"
37523775
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
37533776
integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==
@@ -6016,17 +6039,6 @@ fs-extra@8.1.0, fs-extra@^8.1.0:
60166039
jsonfile "^4.0.0"
60176040
universalify "^0.1.0"
60186041

6019-
fs-extra@^0.30.0:
6020-
version "0.30.0"
6021-
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-0.30.0.tgz#f233ffcc08d4da7d432daa449776989db1df93f0"
6022-
integrity sha1-8jP/zAjU2n1DLapEl3aYnbHfk/A=
6023-
dependencies:
6024-
graceful-fs "^4.1.2"
6025-
jsonfile "^2.1.0"
6026-
klaw "^1.0.0"
6027-
path-is-absolute "^1.0.0"
6028-
rimraf "^2.2.8"
6029-
60306042
fs-extra@^7.0.1:
60316043
version "7.0.1"
60326044
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
@@ -6098,6 +6110,11 @@ fsevents@~2.1.2:
60986110
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e"
60996111
integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==
61006112

6113+
fsevents@~2.3.2:
6114+
version "2.3.2"
6115+
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
6116+
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
6117+
61016118
function-bind@^1.1.1:
61026119
version "1.1.1"
61036120
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
@@ -6222,6 +6239,13 @@ glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@~5.1.0:
62226239
dependencies:
62236240
is-glob "^4.0.1"
62246241

6242+
glob-parent@~5.1.2:
6243+
version "5.1.2"
6244+
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
6245+
integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
6246+
dependencies:
6247+
is-glob "^4.0.1"
6248+
62256249
glob-to-regexp@^0.3.0:
62266250
version "0.3.0"
62276251
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
@@ -6312,7 +6336,7 @@ good-listener@^1.2.2:
63126336
dependencies:
63136337
delegate "^3.1.2"
63146338

6315-
graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.1.9, graceful-fs@^4.2.0, graceful-fs@^4.2.2:
6339+
graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2:
63166340
version "4.2.4"
63176341
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
63186342
integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==
@@ -8007,13 +8031,6 @@ json5@^1.0.1:
80078031
dependencies:
80088032
minimist "^1.2.0"
80098033

8010-
jsonfile@^2.1.0:
8011-
version "2.4.0"
8012-
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"
8013-
integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug=
8014-
optionalDependencies:
8015-
graceful-fs "^4.1.6"
8016-
80178034
jsonfile@^4.0.0:
80188035
version "4.0.0"
80198036
resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
@@ -8082,13 +8099,6 @@ kind-of@^6.0.0, kind-of@^6.0.2:
80828099
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
80838100
integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==
80848101

8085-
klaw@^1.0.0:
8086-
version "1.3.1"
8087-
resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439"
8088-
integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk=
8089-
optionalDependencies:
8090-
graceful-fs "^4.1.9"
8091-
80928102
kleur@^3.0.3:
80938103
version "3.0.3"
80948104
resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e"
@@ -11074,6 +11084,13 @@ readdirp@~3.4.0:
1107411084
dependencies:
1107511085
picomatch "^2.2.1"
1107611086

11087+
readdirp@~3.6.0:
11088+
version "3.6.0"
11089+
resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
11090+
integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
11091+
dependencies:
11092+
picomatch "^2.2.1"
11093+
1107711094
realpath-native@^1.1.0:
1107811095
version "1.1.0"
1107911096
resolved "https://registry.yarnpkg.com/realpath-native/-/realpath-native-1.1.0.tgz#2003294fea23fb0672f2476ebe22fcf498a2d65c"
@@ -11342,7 +11359,7 @@ rimraf@2.6.3:
1134211359
dependencies:
1134311360
glob "^7.1.3"
1134411361

11345-
rimraf@^2.2.8, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3, rimraf@^2.7.1:
11362+
rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3, rimraf@^2.7.1:
1134611363
version "2.7.1"
1134711364
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
1134811365
integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==
@@ -11389,17 +11406,14 @@ rollup-plugin-filesize@^9.0.0:
1138911406
pacote "^11.1.10"
1139011407
terser "^4.8.0"
1139111408

11392-
rollup-plugin-sass@^1.2.2:
11393-
version "1.2.2"
11394-
resolved "https://registry.yarnpkg.com/rollup-plugin-sass/-/rollup-plugin-sass-1.2.2.tgz#f03cd2b1bee497dc2cc845fae2c5749611fc008f"
11395-
integrity sha512-yvHQPg1JS4d23gwHTwTbokH+FV/0bPBVf5QmlvCOzfAhXe0luY0pUgVaWC2qfnoKetp2Oqh5lK7oW/4CXGWs1Q==
11409+
rollup-plugin-sass@^1.2.9:
11410+
version "1.2.9"
11411+
resolved "https://registry.yarnpkg.com/rollup-plugin-sass/-/rollup-plugin-sass-1.2.9.tgz#0c2609d0f813d68b79d9f3ccda2b96d4f0dc1f39"
11412+
integrity sha512-ShI0T6tQxvM0B/njgZ35/1RuiNZTo9LtrUYFRupNokmXbresGb6RvYnkQvWbq4a5UBIp57VJ+cjPcsJKthXV8Q==
1139611413
dependencies:
11397-
babel-runtime "^6.23.0"
11398-
fs-extra "^0.30.0"
11399-
pify "^3.0.0"
11414+
"@rollup/pluginutils" "^3.1.0"
1140011415
resolve "^1.5.0"
11401-
rollup-pluginutils ">= 1.3.1"
11402-
sass "1.7.2"
11416+
sass "^1.7.2"
1140311417

1140411418
rollup-plugin-terser@^7.0.2:
1140511419
version "7.0.2"
@@ -11437,7 +11451,7 @@ rollup-plugin-vue@<6.0.0:
1143711451
source-map "0.7.3"
1143811452
vue-runtime-helpers "^1.1.2"
1143911453

11440-
"rollup-pluginutils@>= 1.3.1", rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2:
11454+
rollup-pluginutils@^2.8.1, rollup-pluginutils@^2.8.2:
1144111455
version "2.8.2"
1144211456
resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e"
1144311457
integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
@@ -11528,20 +11542,20 @@ sass-loader@^10.0.2:
1152811542
schema-utils "^2.7.1"
1152911543
semver "^7.3.2"
1153011544

11531-
sass@1.7.2:
11532-
version "1.7.2"
11533-
resolved "https://registry.yarnpkg.com/sass/-/sass-1.7.2.tgz#a8ff878ad9dcba65e226c1ccb2c2f3c7a1009578"
11534-
integrity sha512-zUm2NXL77WtQDbp4MKgysAxH41Fzs5BnBUogEPi8IKNQ1M5rKoFe46YBXfxr0I+cQX+xbSc//psSdq5eyYhJsg==
11535-
dependencies:
11536-
chokidar "^2.0.0"
11537-
11538-
sass@^1.18.0, sass@^1.26.5:
11545+
sass@^1.18.0:
1153911546
version "1.26.10"
1154011547
resolved "https://registry.yarnpkg.com/sass/-/sass-1.26.10.tgz#851d126021cdc93decbf201d1eca2a20ee434760"
1154111548
integrity sha512-bzN0uvmzfsTvjz0qwccN1sPm2HxxpNI/Xa+7PlUEMS+nQvbyuEK7Y0qFqxlPHhiNHb1Ze8WQJtU31olMObkAMw==
1154211549
dependencies:
1154311550
chokidar ">=2.0.0 <4.0.0"
1154411551

11552+
sass@^1.43.2, sass@^1.7.2:
11553+
version "1.43.2"
11554+
resolved "https://registry.yarnpkg.com/sass/-/sass-1.43.2.tgz#c02501520c624ad6622529a8b3724eb08da82d65"
11555+
integrity sha512-DncYhjl3wBaPMMJR0kIUaH3sF536rVrOcqqVGmTZHQRRzj7LQlyGV7Mb8aCKFyILMr5VsPHwRYtyKpnKYlmQSQ==
11556+
dependencies:
11557+
chokidar ">=3.0.0 <4.0.0"
11558+
1154511559
sax@^1.2.4, sax@~1.2.4:
1154611560
version "1.2.4"
1154711561
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"

0 commit comments

Comments
 (0)