Skip to content

Commit ef3bd76

Browse files
committed
chore(bundle): exclude examples from bundling
1 parent 0e36c6e commit ef3bd76

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.npmignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/renovate.json
2-
examples
2+
examples/*

examples/split-input-example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "split-input-example",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"scripts": {
55
"dev": "vite --host",
66
"build": "vue-tsc --noEmit && vite build",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-split-input",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Vue Split input for otp verification etc",
55
"main": "dist/index.js",
66
"module": "index.ts",
@@ -10,7 +10,7 @@
1010
"build": "tsc -b",
1111
"typecheck": "tsc --noEmit",
1212
"dev": "pnpm -r --filter {examples/split-input-example} run dev",
13-
"release": "bumpp package.json examples/*/package.json --commit --push --tag && pnpm -r publish --access public"
13+
"release": "bumpp package.json examples/*/package.json --commit --push --set-upstream --tag && pnpm -r publish --access public"
1414
},
1515
"repository": {
1616
"type": "git",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
"skipLibCheck": true,
1919
"removeComments": false
2020
},
21-
"exclude": ["node_modules", "dist"],
21+
"exclude": ["node_modules", "dist", "examples"],
2222
"include": ["components/**/*.vue", "."]
2323
}

0 commit comments

Comments
 (0)