Skip to content
This repository was archived by the owner on Jan 9, 2022. It is now read-only.

Commit af56bf3

Browse files
committed
feat: update dist files names
1 parent 34a9a92 commit af56bf3

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Customizable, beautifully animated, lightweight. Typescript support
1010

1111
- files <br/>
1212
~ 1.7 KiB - style.css `gitart-vue-dialog/dist/style.css` <br/>
13-
~ 8.4 KiB - index.js (ES format) `gitart-vue-dialog` <br/>
14-
~ 9.2 KiB - index.upd.js (UPD format) `gitart-vue-dialog/dist/index.upd.js`
13+
~ 9.2 KiB - index.upd.js (UPD format) `gitart-vue-dialog` <br/>
14+
~ 8.4 KiB - index.es.js (ES format) `gitart-vue-dialog/dist/index.es.js`
1515

1616

1717
## Instalation

package.json

+12-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@
77
"lint": "yarn stylelint && yarn eslint",
88
"eslint": "eslint"
99
},
10-
"main": "dist/index.js",
10+
"main": "./dist/index.umd.js",
11+
"module": "./dist/index.js",
12+
"exports": {
13+
".": {
14+
"import": "./dist/index.js",
15+
"require": "./dist/index.umd.js"
16+
}
17+
},
1118
"types": "dist/index.d.ts",
1219
"keywords": [
1320
"gitart",
@@ -25,6 +32,10 @@
2532
"type": "git",
2633
"url": "https://github.com/MichaelGitArt/gitart-vue-dialog.git"
2734
},
35+
"author": {
36+
"name": "Michael Gitart",
37+
"email": "[email protected]"
38+
},
2839
"license": "MIT",
2940
"devDependencies": {
3041
"@types/node": "^16.3.1",

scripts/build.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
const shell = require('shelljs')
44

55
shell.exec('vue-tsc --noEmit && vite build')
6-
shell.exec('cp ./@types/index.d.ts ./dist/index.d.ts')
6+
shell.exec('cp ./@types/index.d.ts ./dist/index.es.d.ts')
77
shell.exec('cp ./@types/index.d.ts ./dist/index.upd.d.ts')

vite.config.ts

+1-12
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,7 @@ export default defineConfig({
1515
lib: {
1616
entry: resolvePath('src/index.ts'),
1717
name: 'index',
18-
fileName: format => {
19-
switch (format) {
20-
case 'es':
21-
return 'index.js'
22-
23-
case 'umd':
24-
return 'index.umd.js'
25-
26-
default:
27-
return `index.${format}.js`
28-
}
29-
},
18+
fileName: format => `index.${format}.js`,
3019
},
3120

3221
rollupOptions: {

0 commit comments

Comments
 (0)