From c71a763ad18fdf47ba00c6072aa543046653899d Mon Sep 17 00:00:00 2001 From: neverland Date: Fri, 28 Sep 2018 16:43:39 +0800 Subject: [PATCH] [improvement] utils ts (#668) --- build/compiler.js | 3 +-- dist/common/utils.js | 7 ++----- packages/common/{utils.js => utils.ts} | 4 ++-- 3 files changed, 5 insertions(+), 9 deletions(-) rename packages/common/{utils.js => utils.ts} (70%) diff --git a/build/compiler.js b/build/compiler.js index 9a5d6bf1..871f50f8 100644 --- a/build/compiler.js +++ b/build/compiler.js @@ -9,7 +9,7 @@ const rename = require('gulp-rename'); const isProduction = process.env.NODE_ENV === 'production'; const src = path.join(__dirname, '../packages'); const dist = path.join(__dirname, isProduction ? '../dist' : '../example/dist'); -const ext = ['js', 'ts', 'less', 'json', 'wxml']; +const ext = ['ts', 'less', 'json', 'wxml']; function copy(ext) { return gulp.src([src + '/**/*.' + ext]).pipe(gulp.dest(dist)); @@ -29,7 +29,6 @@ gulp.task('compile-less', () => { .pipe(gulp.dest(dist)); }); -gulp.task('compile-js', () => copy('js')); gulp.task('compile-ts', () => gulp .src([src + '/**/*.ts']) diff --git a/dist/common/utils.js b/dist/common/utils.js index 71ddfc64..9823aaff 100644 --- a/dist/common/utils.js +++ b/dist/common/utils.js @@ -3,11 +3,8 @@ function isDef(value) { } function isObj(x) { - const type = typeof x; + var type = typeof x; return x !== null && (type === 'object' || type === 'function'); } -export { - isObj, - isDef -}; +export { isObj, isDef }; \ No newline at end of file diff --git a/packages/common/utils.js b/packages/common/utils.ts similarity index 70% rename from packages/common/utils.js rename to packages/common/utils.ts index 71ddfc64..89073303 100644 --- a/packages/common/utils.js +++ b/packages/common/utils.ts @@ -1,8 +1,8 @@ -function isDef(value) { +function isDef(value: any): boolean { return value !== undefined && value !== null; } -function isObj(x) { +function isObj(x: any): boolean { const type = typeof x; return x !== null && (type === 'object' || type === 'function'); }