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


TypeScript gulp-newer.default函數代碼示例

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


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

示例1: newer

gulp.task("scripts:coffee", () => {
  return gulp.src('./src/coffee/**/*.coffee')
    .pipe(gulpif(argv.incremental, newer({dest: paths.buildDir.jsTree, ext: '.js'})))
    .pipe(coffee({bare: true}))
    .pipe(rename((path) => path.extname = '.ts'))
    .pipe(gulp.dest(paths.buildDir.jsTree + '_ts'))
})
開發者ID:bgyarfas,項目名稱:bokeh,代碼行數:7,代碼來源:scripts.ts

示例2:

gulp.task('html-replace', () => {
    return gulp.src(webAppDir + '**/*.html')
        .pipe(newer(staticDir))
        .pipe(sourcemaps.init())
        .pipe(htmlmin({collapseWhitespace: true, caseSensitive: true}))
        .pipe(sourcemaps.write('/'))
        .pipe(gulp.dest(staticDir))
});
開發者ID:Nandtel,項目名稱:spring-boot-angular2-starter,代碼行數:8,代碼來源:gulpfile.ts

示例3: join

export = () => {
  const src = [
    join(Config.FRAMEWORK_SRC, 'server', '**'),
    '!requirements.txt',
    '!*.yaml'
  ];
  return gulp.src(src)
    .pipe(newer(Config.SERVER_SRC))
    .pipe(gulp.dest(Config.SERVER_SRC));
};
開發者ID:our-city-app,項目名稱:gae-plugin-framework,代碼行數:10,代碼來源:build.plugins.framework.ts

示例4: join

export = () => {
  let src = [
    join(Config.APP_SRC, 'package.json')
  ];
  return gulp.src(src)
    .pipe(newer({
      dest: Config.APP_DEST,
      map: function(path: String) { return path.replace('.ts', '.js').replace('.scss', '.css'); }
    }))
    .pipe(gulp.dest(Config.APP_DEST));
};
開發者ID:DataWingSoftware,項目名稱:base-application,代碼行數:11,代碼來源:desktop.build.ts

示例5: relative

export = () => {
  let src = [
    'node_modules/@angular/**/*',
    'node_modules/rxjs/**/*',
    'node_modules/angulartics2/**/*',
    'node_modules/lodash/**/*',
    'node_modules/ng2-translate/**/*',
    'node_modules/@ngrx/**/*'
  ];

  src.push(...Config.NPM_DEPENDENCIES.map(x => relative(Config.PROJECT_ROOT, x.src)));

  return gulp.src(src, { base: 'node_modules' })
    .pipe(newer({
      dest: join(Config.APP_DEST + '/node_modules'),
      map: function(path: String) { return path.replace('.ts', '.js').replace('.scss', '.css'); }
    }))
    .pipe(gulp.dest(join(Config.APP_DEST + '/node_modules')));
};
開發者ID:DataWingSoftware,項目名稱:base-application,代碼行數:19,代碼來源:desktop.libs.ts

示例6: relative

export = () => {
  let src = [
    'node_modules/@angular/**/*',
    'node_modules/rxjs/**/*'
  ];

  let additionalPkgs: ExtendPackages[] = Config.DESKTOP_PACKAGES;
  additionalPkgs.forEach((pkg) => {
   if (typeof(pkg.name) !== 'undefined') {
      src.push(`node_modules/${pkg.name}/**/*`);
    }
  });

  src.push(...Config.NPM_DEPENDENCIES.map(x => relative(Config.PROJECT_ROOT, x.src)));

  return gulp.src(src, { base: 'node_modules' })
    .pipe(newer({
      dest: join(Config.APP_DEST + '/node_modules'),
      map: function (path: String) { return path.replace('.ts', '.js').replace('.scss', '.css'); }
    }))
    .pipe(gulp.dest(join(Config.APP_DEST + '/node_modules')));
};
開發者ID:hellofornow,項目名稱:angular2-seed-advanced,代碼行數:22,代碼來源:desktop.libs.ts


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