-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sanjay Soundarajan
committed
Nov 6, 2021
1 parent
762e9d5
commit 50280e0
Showing
4 changed files
with
19 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -741,10 +741,17 @@ vitepress@^0.20.0: | |
vite "^2.6.5" | ||
vue "^3.2.19" | ||
|
||
vue3-marquee@^1.0.0: | ||
version "1.0.0" | ||
resolved "https://registry.yarnpkg.com/vue3-marquee/-/vue3-marquee-1.0.0.tgz#00e87681d497a20cd9946f4a93340e6b0313bf1e" | ||
integrity sha512-Z7wi2Bj9gSCMnkCrcl6qX/nbNTmj71nvudhjYsadhj2wgSb117xOW44wzcOcAFGAMELScVejmN/w3c5E7t2Cfg== | ||
vue-class-component@^8.0.0-0: | ||
version "8.0.0-rc.1" | ||
resolved "https://registry.yarnpkg.com/vue-class-component/-/vue-class-component-8.0.0-rc.1.tgz#db692cd97656eb9a08206c03d0b7398cdb1d9420" | ||
integrity sha512-w1nMzsT/UdbDAXKqhwTmSoyuJzUXKrxLE77PCFVuC6syr8acdFDAq116xgvZh9UCuV0h+rlCtxXolr3Hi3HyPQ== | ||
|
||
[email protected]: | ||
version "2.0.0-beta" | ||
resolved "https://registry.yarnpkg.com/vue3-marquee/-/vue3-marquee-2.0.0-beta.tgz#f075c04469211447e020fd67621d484a7e14a09b" | ||
integrity sha512-fN/TlzvZatapo59gtl72wXTpxn5hk03276pRNQ8TKb/DzghuxKRTJGMtXIXqcJl7G/N7B5BrJbuf94AHKBiu2g== | ||
dependencies: | ||
vue-class-component "^8.0.0-0" | ||
|
||
vue@^3.2.19: | ||
version "3.2.20" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"name": "vue3-marquee", | ||
"version": "2.0.0", | ||
"version": "2.0.1-beta", | ||
"description": "A simple marquee component with ZERO dependencies for Vue 3", | ||
"author": "Sanjay Soundarajan <[email protected]> (https://sanjaysoundarajan.dev)", | ||
"scripts": { | ||
"serve": "vue-cli-service serve dev/serve.ts", | ||
"dev": "vue-cli-service serve dev/serve.ts", | ||
"build": "cross-env NODE_ENV=production rollup --config build/rollup.config.js", | ||
"build:es": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format es", | ||
"build:ssr": "cross-env NODE_ENV=production rollup --config build/rollup.config.js --format cjs", | ||
|
@@ -18,7 +18,8 @@ | |
"unpkg": "dist/vue3-marquee.min.js", | ||
"files": [ | ||
"dist/*", | ||
"src/**/*.vue" | ||
"src/**/*.vue", | ||
"types/*" | ||
], | ||
"dependencies": { | ||
"vue-class-component": "^8.0.0-0" | ||
|