Skip to content

Commit

Permalink
import error update
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanjay Soundarajan committed Nov 6, 2021
1 parent 762e9d5 commit 50280e0
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
6 changes: 3 additions & 3 deletions build/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ if (!argv.format || argv.format === "es") {
input: "src/entry.esm.ts",
external,
output: {
file: "dist/vue3-marquee.esm.ts",
file: "dist/vue3-marquee.esm.js",
format: "esm",
exports: "named",
},
Expand Down Expand Up @@ -126,7 +126,7 @@ if (!argv.format || argv.format === "cjs") {
external,
output: {
compact: true,
file: "dist/vue3-marquee.ssr.ts",
file: "dist/vue3-marquee.ssr.js",
format: "cjs",
name: "Vue3Marquee",
exports: "auto",
Expand All @@ -150,7 +150,7 @@ if (!argv.format || argv.format === "iife") {
external,
output: {
compact: true,
file: "dist/vue3-marquee.min.ts",
file: "dist/vue3-marquee.min.js",
format: "iife",
name: "Vue3Marquee",
exports: "auto",
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"vitepress": "^0.20.0"
},
"dependencies": {
"vue3-marquee": "^1.0.0"
"vue3-marquee": "2.0.0-beta"
},
"repository": {
"type": "git",
Expand Down
15 changes: 11 additions & 4 deletions docs/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
7 changes: 4 additions & 3 deletions package.json
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",
Expand All @@ -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"
Expand Down

0 comments on commit 50280e0

Please sign in to comment.