當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript gulp-stylus類代碼示例

本文整理匯總了TypeScript中gulp-stylus的典型用法代碼示例。如果您正苦於以下問題:TypeScript gulp-stylus類的具體用法?TypeScript gulp-stylus怎麽用?TypeScript gulp-stylus使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了gulp-stylus類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: processCSS

export default function processCSS() {
  return gulp.src(project.cssProcessor.source)
    .pipe(changedInPlace({firstPass:true}))
    .pipe(sourcemaps.init())
    .pipe(stylus())
    .pipe(build.bundle());
};
開發者ID:BBosman,項目名稱:cli,代碼行數:7,代碼來源:process-stylus.ts

示例2: buildStyles

export default function buildStyles() {
  return gulp.src(project.paths.styles)
    .pipe(changed(project.paths.output, {extension: '.css'}))
    .pipe(sourcemaps.init())
    .pipe(stylus())
    .pipe(sourcemaps.write())
    .pipe(gulp.dest(project.paths.output));
};
開發者ID:itainteasy,項目名稱:cli,代碼行數:8,代碼來源:build-styles-stylus.ts

示例3: processCSS

export default function processCSS() {
  return gulp.src(project.cssProcessor.source)
    .pipe(plumber({ errorHandler: notify.onError('Error: <%= error.message %>') }))
    .pipe(changedInPlace({firstPass:true}))
    .pipe(sourcemaps.init())
    .pipe(stylus())
    .pipe(build.bundle());
};
開發者ID:AshleyGrant,項目名稱:cli,代碼行數:8,代碼來源:process-stylus.ts

示例4:

gulp.task('compile-stylus', () => {
  let customOpts = { use: [poststylus(['rucksack-css'])] };
  gulp
    .src(STYLES_SRC)
    .pipe(changed(APP_DEST))
    .pipe(stylus(customOpts))
    .pipe(gulp.dest(APP_DEST))
    .pipe(browserSync.stream());
});
開發者ID:jlsuarezs,項目名稱:Angular2TS-Starter-Kit,代碼行數:9,代碼來源:gulpfile.ts

示例5: stylus

g.task('styl', () => {
    const combined = combiner.obj([
        g.src(['src/**/*.styl', '!src/**/_*.styl']),
        sourcemaps.init(),
        stylus(),
        sourcemaps.write('.'),
        browserSync.stream(),
        g.dest('build')
    ])
    combined.on('error', console.error.bind(console))
    return combined;
})
開發者ID:MiYogurt,項目名稱:nl-gulp-imovie,代碼行數:12,代碼來源:gulpfile.ts


注:本文中的gulp-stylus類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。