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

Commit 34a9a92

Browse files
committed
build: update build process
- dist/server.js to dist/index.upd.js - add /dist/index.upd.d.ts - remove dev script
1 parent be2434a commit 34a9a92

File tree

6 files changed

+10
-31
lines changed

6 files changed

+10
-31
lines changed

README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,16 @@
22

33
Customizable, beautifully animated, lightweight. Typescript support
44

5-
🤯 [Documentation](https://gitart-vue-dialog.netlify.app/)
5+
📘 [Documentation](https://gitart-vue-dialog.netlify.app/)
66

77
🤯 [Examples](https://michaelgitart.github.io/gitart-vue-dialog/)
88

99
---
1010

11-
- lightweight <br/>
12-
~ 1.7 KiB - style.css <br/>
13-
~ 8.4 KiB - index.js
11+
- files <br/>
12+
~ 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`
1415

1516

1617
## Instalation
@@ -35,7 +36,7 @@ export default {
3536

3637
### Plugin
3738

38-
Be sure to read the [вocumentation](https://gitart-vue-dialog.netlify.app/) for using the plugin
39+
Be sure to read the [documentation](https://gitart-vue-dialog.netlify.app/) for using the plugin
3940

4041
```js
4142
import App from './App.vue'

package.json

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "gitart-vue-dialog",
33
"version": "0.2.0",
44
"scripts": {
5-
"dev": "node ./scripts/dev.js",
65
"build": "node ./scripts/build.js",
76
"stylelint": "stylelint **/*.vue",
87
"lint": "yarn stylelint && yarn eslint",
@@ -33,7 +32,6 @@
3332
"@typescript-eslint/parser": "^4.28.4",
3433
"@vitejs/plugin-vue": "^1.4",
3534
"@vue/compiler-sfc": "^3.2.4",
36-
"chokidar": "^3.5.2",
3735
"eslint": "^7.31.0",
3836
"eslint-plugin-import": "^2.23.4",
3937
"eslint-plugin-vue": "^7.14.0",

scripts/build.js

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

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

scripts/dev.js

-21
This file was deleted.

vite.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default defineConfig({
2121
return 'index.js'
2222

2323
case 'umd':
24-
return 'server.js'
24+
return 'index.umd.js'
2525

2626
default:
2727
return `index.${format}.js`

yarn.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ character-reference-invalid@^1.0.0:
806806
resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560"
807807
integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==
808808

809-
"chokidar@>=3.0.0 <4.0.0", chokidar@^3.5.2:
809+
"chokidar@>=3.0.0 <4.0.0":
810810
version "3.5.2"
811811
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75"
812812
integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==

0 commit comments

Comments
 (0)