Skip to content

Commit 67974ea

Browse files
committed
update
1 parent 83e5797 commit 67974ea

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

File renamed without changes.

gulpfile.js

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

3232
gulp.task('build_commonjs', function () {
33-
return gulp.src(['test.ts', 'index.ts'])
33+
return gulp.src(['depend.ts', 'index.ts'])
3434
.pipe(sourcemaps.init())
3535
.pipe(ts({
3636
noImplicitAny: true
@@ -47,7 +47,7 @@ gulp.task('build_commonjs', function () {
4747
})
4848

4949
gulp.task('build_umd', function () {
50-
return gulp.src(['test.ts', 'index.ts'])
50+
return gulp.src(['depend.ts', 'index.ts'])
5151
.pipe(ts({
5252
noImplicitAny: true
5353
}))
@@ -74,7 +74,7 @@ gulp.task('build_umd', function () {
7474

7575
gulp.task('clear', () => {
7676
return del([
77-
'dist/test.*'
77+
'dist/depend.*'
7878
])
7979
})
8080

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
"typescript": "^3.6.3",
4444
"vue": "^2.6.10",
4545
"vxe-table": "^2.5.22",
46-
"xe-utils": "^2.2.5"
46+
"xe-utils": "^2.2.6"
4747
},
4848
"peerDependencies": {
49-
"vxe-table": ">=2.2.0",
49+
"vxe-table": ">=2.6.0",
5050
"xe-utils": ">=2.2.0"
5151
},
5252
"repository": {

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"files": [
33
"index.ts",
4-
"test.ts"
4+
"depend.ts"
55
],
66
"compilerOptions": {
77
"noImplicitAny": true,

0 commit comments

Comments
 (0)