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


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

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


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

示例1: function

gulp.task('compile-typescript', function () {
    var streamFinished = function () {
        gutil.log('End stream');
    };
    var entry = config.paths.app + '/main.ts';
    var fileName = path.basename(entry, path.extname(entry)) + ".js";
    return gulp.src(entry)
        .pipe(ts({
            target: "ES5",
            noImplicitAny: false,
            moduleResolution: "node",
            outFile: fileName,
            removeComments: true,
            experimentalDecorators: true
        }))
        .pipe(wrap({ src: 'template.txt' }))
        .pipe(rename({ suffix: '.debug' }))
        .pipe(gulp.dest(config.paths.pub))
        .pipe(uglify())
        .pipe(rename(fileName))
        .pipe(gulp.dest(config.paths.pub))
        .on('end', streamFinished);


    //.pipe(wrap('(function($){\n"use strict";\n<%= contents %>\n})(jQuery);'))
    //.pipe(rename(fileName))

});
開發者ID:alekspolitov,項目名稱:TypeScriptTest,代碼行數:28,代碼來源:gulpfile.ts

示例2:

gulp.task("bump", ['clean'], () => {
    return gulp.src('./publish.json')
        .pipe(bump())
        .pipe(gulp.dest('./'))
        .pipe(rename('package.json'))
        .pipe(gulp.dest('dist'));
});
開發者ID:Zir01,項目名稱:swag-ts-ng,代碼行數:7,代碼來源:gulpfile.ts

示例3: Promise

  return new Promise((resolve) => {
    var doneCount = 0;
    output.js
      .pipe(rename(buildUtils.stripSrcFromPath))
      .pipe(gulp.dest('dist'))
      .on('end', maybeDone),
    output.dts
      .pipe(rename(buildUtils.stripSrcFromPath))
      .pipe(gulp.dest('dist'))
      .on('end', maybeDone)

    function maybeDone() {
      doneCount++;
      if (doneCount == 2) resolve();
    }
  })
開發者ID:Zeniagromoff,項目名稱:universal,代碼行數:16,代碼來源:gulpfile.ts

示例4:

 gulp.task('pcss:build', () => gulp.src(env.path.src.css)
   .pipe(plumber())
   .pipe(postcss(postCssPlugins))
   .pipe(rename({
     extname: '.css',
   }))
   .pipe(gulp.dest(`${env.dir.src}/app`)));
開發者ID:MSakamaki,項目名稱:rxjs-handson,代碼行數:7,代碼來源:postcss.ts

示例5:

export = gulp.task('config', () => {
  return gulp
    .src(paths.sources.config)
    .pipe(replace(config.replace(argv.appName, argv.serviceURL)))
    .pipe(rename('config.ts'))
    .pipe(gulp.dest(paths.config));
});
開發者ID:mogusbi,項目名稱:ts-starter,代碼行數:7,代碼來源:config.ts

示例6:

gulp.task('task:bundles:minify', () => gulp
  .src([
    'tmp/es5/bundles/**/*.js'
  ])
  .pipe(uglify())
  .pipe(rename({suffix: '.min'}))
  .pipe(gulp.dest('tmp/es5/bundles')));
開發者ID:webmaxru,項目名稱:mobile-toolkit,代碼行數:7,代碼來源:gulpfile.ts

示例7: getBrowserCodeStream

export function getBrowserCodeStream(opts?: PrebootOptions): any {
  opts = normalize(opts);

  let bOpts = {
    entries: [__dirname + '/../browser/preboot_browser.js'],
    standalone: 'preboot',
    basedir: __dirname + '/../browser',
    browserField: false
  };
  let b = browserify(bOpts);

  // ignore any strategies that are not being used
  ignoreUnusedStrategies(b, bOpts, opts.listen, listenStrategies, './listen/listen_by_');
  ignoreUnusedStrategies(b, bOpts, opts.replay, replayStrategies, './replay/replay_after_');

  if (opts.freeze) {
    ignoreUnusedStrategies(b, bOpts, [opts.freeze], freezeStrategies, './freeze/freeze_with_');
  }

  // ignore other code not being used
  if (!opts.buffer) { b.ignore('./buffer_manager.js', bOpts); }
  if (!opts.debug) { b.ignore('./log.js', bOpts); }

  // use gulp to get the stream with the custom preboot browser code
  let outputStream = b.bundle()
    .pipe(source('src/browser/preboot_browser.js'))
    .pipe(buffer())
    .pipe(insert.append('\n\n;preboot.init(' + stringifyWithFunctions(opts) + ');\n\n'))
    .pipe(rename('preboot.js'));

  // uglify if the option is passed in
  return opts.uglify ? outputStream.pipe(uglify()) : outputStream;
}
開發者ID:TheLarkInn,項目名稱:universal,代碼行數:33,代碼來源:browser_code_generator.ts

示例8:

gulp.task('task:worker:minify', () => gulp
  .src([
    'dist/worker.js'
  ], {base: 'dist'})
  .pipe(uglify())
  .pipe(rename({suffix: '.min'}))
  .pipe(gulp.dest('dist')));
開發者ID:iller7,項目名稱:mobile-toolkit-ng,代碼行數:7,代碼來源:gulpfile.ts

示例9: function

 gulp.task("build:jsx", function () {
     return gulp.src(options.filePattern)
         .pipe(transform(options.transformOptions))
         .pipe(rename({
             extname: ".js"
         }))
         .pipe(gulp.dest(options.dest));
 });
開發者ID:KallynGowdy,項目名稱:RxUI-View,代碼行數:8,代碼來源:tasks.ts


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