Skip to content

Commit

Permalink
build: update dist file path
Browse files Browse the repository at this point in the history
  • Loading branch information
meteorlxy committed Dec 3, 2023
1 parent 8c1b8da commit 1ce755a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 13 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ docs/.vuepress/dist/

# Dist files
dist/
lib/

# Test temp files
**/__fixtures__/.temp/
Expand Down
8 changes: 4 additions & 4 deletions packages/vuepress-vite/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@
"author": "meteorlxy",
"type": "module",
"exports": {
".": "./lib/index.js",
".": "./dist/index.js",
"./bin": "./bin/vuepress.js",
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vuepress": "./bin/vuepress.js",
"vuepress-vite": "./bin/vuepress.js"
},
"files": [
"bin",
"lib"
"dist"
],
"scripts": {
"build": "tsup",
Expand Down
8 changes: 4 additions & 4 deletions packages/vuepress-webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@
"author": "meteorlxy",
"type": "module",
"exports": {
".": "./lib/index.js",
".": "./dist/index.js",
"./bin": "./bin/vuepress.js",
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vuepress": "./bin/vuepress.js",
"vuepress-webpack": "./bin/vuepress.js"
},
"files": [
"bin",
"lib"
"dist"
],
"scripts": {
"build": "tsup",
Expand Down
8 changes: 4 additions & 4 deletions packages/vuepress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@
"author": "meteorlxy",
"type": "module",
"exports": {
".": "./lib/index.js",
".": "./dist/index.js",
"./bin": "./bin/vuepress.js",
"./package.json": "./package.json"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vuepress": "./bin/vuepress.js"
},
"files": [
"bin",
"lib"
"dist"
],
"scripts": {
"build": "tsup",
Expand Down

0 comments on commit 1ce755a

Please sign in to comment.