Skip to content

Commit

Permalink
chore(bundle): exclude examples from bundling
Browse files Browse the repository at this point in the history
  • Loading branch information
dammy001 committed Feb 5, 2022
1 parent 0e36c6e commit ef3bd76
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/renovate.json
examples
examples/*
2 changes: 1 addition & 1 deletion examples/split-input-example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "split-input-example",
"version": "1.0.1",
"version": "1.0.2",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-split-input",
"version": "1.0.1",
"version": "1.0.2",
"description": "Vue Split input for otp verification etc",
"main": "dist/index.js",
"module": "index.ts",
Expand All @@ -10,7 +10,7 @@
"build": "tsc -b",
"typecheck": "tsc --noEmit",
"dev": "pnpm -r --filter {examples/split-input-example} run dev",
"release": "bumpp package.json examples/*/package.json --commit --push --tag && pnpm -r publish --access public"
"release": "bumpp package.json examples/*/package.json --commit --push --set-upstream --tag && pnpm -r publish --access public"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"skipLibCheck": true,
"removeComments": false
},
"exclude": ["node_modules", "dist"],
"exclude": ["node_modules", "dist", "examples"],
"include": ["components/**/*.vue", "."]
}

0 comments on commit ef3bd76

Please sign in to comment.