Я не нашел примеров для gulp-load-plugins
в TypeScript.К сожалению, мой TypeScript слишком беден, чтобы понять, что делать с @ type / gulp-load-plugins комментариями.
Я пытался:
import * as _gulpPlugins from 'gulp-load-plugins';
const gulpPlugins: IGulpPlugins = _gulpPlugins();
return gulp.src(sourceFilesGlobSelections)
.pipe(gulpPlugins.pug())
// ...
Этовыдает 4 предупреждения из Webpack (я не понимаю, куда относится такой номер 75:13-25
; .pipe(gulpPlugins.pug())
находится на 50 строке):
WARNING in ../node_modules/gulp-load-plugins/index.js 75:13-25
Critical dependency: the request of a dependency is an expression
@ ./TaskManagers/MarkupPreprocessingHelper.ts
WARNING in ../node_modules/gulp-load-plugins/index.js 81:48-63
Critical dependency: the request of a dependency is an expression
@ ./TaskManagers/MarkupPreprocessingHelper.ts
WARNING in ../node_modules/gulp-load-plugins/index.js 117:40-55
Critical dependency: the request of a dependency is an expression
@ ./TaskManagers/MarkupPreprocessingHelper.ts
WARNING in ../node_modules/gulp-load-plugins/index.js 122:51-66
Critical dependency: the request of a dependency is an expression
@ ./TaskManagers/MarkupPreprocessingHelper.ts
Было сказано в @types/gulp-load-plugins
:
/**
* Extend this interface to use Gulp plugins in your gulpfile.js
*/
interface IGulpPlugins {
}
Я пытался:
interface IGulpPlugins {
pug: () => NodeJS.ReadWriteStream;
}
Он также определил:
declare module 'gulp-load-plugins' {
interface IOptions {
// ...
}
interface IPluginNameMappings {
[npmPackageName: string]: string
}
/** Loads in any gulp plugins and attaches them to an object, freeing you up from having to manually require each gulp plugin. */
function gulpLoadPlugins<T extends IGulpPlugins>(options?: IOptions): T;
// ...
}
Похоже, мне следует использовать gulpLoadPlugins
вместо расширения интерфейса ... Это все, что я понимаюс моим текущим знанием TypeScirpt, но этого недостаточно, чтобы понять, как использовать gulp-load-plugins
в TypeScript.