Skip to content

Commit caa8178

Browse files
committed
update
1 parent acba89e commit caa8178

5 files changed

Lines changed: 5 additions & 10 deletions

File tree

depend.ts

Lines changed: 0 additions & 4 deletions
This file was deleted.

gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ gulp.task('build_style', function () {
3131
})
3232

3333
gulp.task('build_commonjs', function () {
34-
return gulp.src(['depend.ts', 'index.ts'])
34+
return gulp.src(['index.ts'])
3535
.pipe(sourcemaps.init())
3636
.pipe(ts(tsconfig.compilerOptions))
3737
.pipe(babel({
@@ -46,7 +46,7 @@ gulp.task('build_commonjs', function () {
4646
})
4747

4848
gulp.task('build_umd', function () {
49-
return gulp.src(['depend.ts', 'index.ts'])
49+
return gulp.src(['index.ts'])
5050
.pipe(ts(tsconfig.compilerOptions))
5151
.pipe(replace(`from 'xe-utils/ctor';`, `from 'xe-utils';`))
5252
.pipe(replace(`from 'vxe-table/lib/vxe-table';`, `from 'vxe-table';`))

index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { h, resolveComponent, ComponentOptions } from 'vue'
2-
import XEUtils from 'xe-utils/ctor'
2+
import XEUtils from 'xe-utils'
33
import {
44
VXETableCore,
55
VxeTableDefines,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"prettier": "^2.1.2",
5151
"typescript": "^4.0.5",
5252
"vue": "^3.0.6",
53-
"vxe-table": "^4.0.0",
53+
"vxe-table": "^4.0.1",
5454
"xe-utils": "^3.1.11"
5555
},
5656
"peerDependencies": {

tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"files": [
3-
"index.ts",
4-
"depend.ts"
3+
"index.ts"
54
],
65
"compilerOptions": {
76
"strict": true,

0 commit comments

Comments
 (0)