fix(generators): Fix generator typings (#7727)

This commit is contained in:
Christopher Allen
2023-12-19 21:20:04 +00:00
committed by GitHub
parent 04a6536518
commit 4dcf4064f2
6 changed files with 5 additions and 144 deletions

View File

@@ -348,7 +348,6 @@ function packageDTS() {
return gulp.src(handwrittenSrcs, {base: 'typings'})
.pipe(gulp.src(`${TYPINGS_BUILD_DIR}/**/*.d.ts`, {ignore: [
`${TYPINGS_BUILD_DIR}/blocks/**/*`,
`${TYPINGS_BUILD_DIR}/generators/**/*`,
]}))
.pipe(gulp.replace('AnyDuringMigration', 'any'))
.pipe(gulp.dest(RELEASE_DIR));