mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
fix(build): fix dts (#4741)
This commit is contained in:
parent
639527add9
commit
a8d6c351af
@ -7,6 +7,7 @@ const rename = require('gulp-rename');
|
|||||||
const postcss = require('gulp-postcss');
|
const postcss = require('gulp-postcss');
|
||||||
const ts = require('gulp-typescript');
|
const ts = require('gulp-typescript');
|
||||||
const util = require('util');
|
const util = require('util');
|
||||||
|
const merge2 = require('merge2');
|
||||||
const exec = util.promisify(require('child_process').exec);
|
const exec = util.promisify(require('child_process').exec);
|
||||||
|
|
||||||
const src = path.resolve(__dirname, '../packages');
|
const src = path.resolve(__dirname, '../packages');
|
||||||
@ -54,11 +55,14 @@ const lessCompiler = (dist) =>
|
|||||||
|
|
||||||
const tsCompiler = (dist, config) =>
|
const tsCompiler = (dist, config) =>
|
||||||
function compileTs() {
|
function compileTs() {
|
||||||
const tsProject = ts.createProject(config);
|
const tsProject = ts.createProject(config, {
|
||||||
return tsProject
|
declaration: true,
|
||||||
.src()
|
});
|
||||||
.pipe(tsProject())
|
const tsResult = tsProject.src().pipe(tsProject());
|
||||||
.js.pipe(
|
|
||||||
|
return merge2(
|
||||||
|
tsResult.js
|
||||||
|
.pipe(
|
||||||
insert.transform((contents, file) => {
|
insert.transform((contents, file) => {
|
||||||
if (dist === exampleDistDir && file.path.includes('/demo/')) {
|
if (dist === exampleDistDir && file.path.includes('/demo/')) {
|
||||||
const iconConfig = '@vant/icons/src/config';
|
const iconConfig = '@vant/icons/src/config';
|
||||||
@ -73,7 +77,9 @@ const tsCompiler = (dist, config) =>
|
|||||||
return contents;
|
return contents;
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
.pipe(gulp.dest(dist));
|
.pipe(gulp.dest(dist)),
|
||||||
|
tsResult.dts.pipe(gulp.dest(dist))
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const copier = (dist, ext) =>
|
const copier = (dist, ext) =>
|
||||||
|
@ -54,6 +54,7 @@
|
|||||||
"gulp-rename": "^2.0.0",
|
"gulp-rename": "^2.0.0",
|
||||||
"gulp-typescript": "^6.0.0-alpha.1",
|
"gulp-typescript": "^6.0.0-alpha.1",
|
||||||
"jest": "^27.3.1",
|
"jest": "^27.3.1",
|
||||||
|
"merge2": "^1.4.1",
|
||||||
"miniprogram-api-typings": "^3.1.6",
|
"miniprogram-api-typings": "^3.1.6",
|
||||||
"miniprogram-ci": "^1.6.1",
|
"miniprogram-ci": "^1.6.1",
|
||||||
"miniprogram-simulate": "^1.4.2",
|
"miniprogram-simulate": "^1.4.2",
|
||||||
|
@ -9364,6 +9364,11 @@ merge2@^1.2.3, merge2@^1.3.0:
|
|||||||
resolved "https://registry.npm.taobao.org/merge2/download/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
|
resolved "https://registry.npm.taobao.org/merge2/download/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
|
||||||
integrity sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=
|
integrity sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=
|
||||||
|
|
||||||
|
merge2@^1.4.1:
|
||||||
|
version "1.4.1"
|
||||||
|
resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
|
||||||
|
integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
|
||||||
|
|
||||||
micromark@~2.11.0:
|
micromark@~2.11.0:
|
||||||
version "2.11.4"
|
version "2.11.4"
|
||||||
resolved "https://registry.npm.taobao.org/micromark/download/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a"
|
resolved "https://registry.npm.taobao.org/micromark/download/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user