当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript slash.default方法代码示例

本文整理汇总了TypeScript中slash.default方法的典型用法代码示例。如果您正苦于以下问题:TypeScript slash.default方法的具体用法?TypeScript slash.default怎么用?TypeScript slash.default使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在slash的用法示例。


在下文中一共展示了slash.default方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: function

 return function (filepath) {
   filepath = ENV === 'prod' ? filepath.replace(`/${APP_DEST}`, '') : filepath;
   return slash(plugins.inject.transform.apply(plugins.inject.transform, arguments));
 };
开发者ID:99plus2,项目名称:pev,代码行数:4,代码来源:template-injectables.ts

示例2: function

 return function (filepath) {
   arguments[0] = join(APP_BASE, filepath);
   return slash(plugins.inject.transform.apply(plugins.inject.transform, arguments));
 };
开发者ID:jtborst,项目名称:instaMoneyDashboard,代码行数:4,代码来源:template-injectables.ts

示例3: join

 .map(path => join(target, slash(path).split('/').pop()))
开发者ID:99plus2,项目名称:pev,代码行数:1,代码来源:template-injectables.ts

示例4: callback

 .pipe(through2.obj(function(chunk, enc, callback) {
   this.push(slash(path.relative(__dirname, chunk.path)));
   callback();
 }))
开发者ID:brunkb,项目名称:a2-contact,代码行数:4,代码来源:gulpfile.ts

示例5: function

 return function(filePath) {
   filePath = ENV === 'prod' ? filePath.replace(`/${APP_DEST}`, '') : filePath;
   arguments[0] = join(APP_BASE, filePath) + `?${Date.now()}`;
   return slash(plugins.inject.transform.apply(plugins.inject.transform, arguments));
 };
开发者ID:JayKan,项目名称:angular2-dashboard,代码行数:5,代码来源:template_injectables.ts

示例6: function

 return function (filepath) {
   filepath = ENV === "prod" ? filepath.replace(`/${APP_DEST}`, "") : filepath;
   arguments[0] = join(APP_BASE, filepath) /* + `?${Date.now()}` */ ;
   return slash(plugins.inject.transform.apply(plugins.inject.transform, arguments));
 };
开发者ID:wuyingki,项目名称:angular2-seed,代码行数:5,代码来源:template_injectables.ts

示例7: mapDestPathForlib

function mapDestPathForlib(filePath: string) {
  const relPath = path.dirname(path.relative(__dirname, filePath));
  return slash(relPath).replace(FIRST_PATH_SEGMENT, PATHS.dest.dist.lib);
}
开发者ID:brunkb,项目名称:a2-contact,代码行数:4,代码来源:gulpfile.ts

示例8: function

 return function(filePath) {
   filePath = env === 'prod' ? filePath.replace(FIRST_PATH_SEGMENT, '/lib') : filePath;
   arguments[0] = join('.', filePath);
   return slash(plugins.inject.transform.apply(plugins.inject.transform, arguments));
 };
开发者ID:JayKan,项目名称:angular2-todo,代码行数:5,代码来源:template_injectables.ts

示例9: join

 return PATH.src.lib_inject.map(path =>
   join(PATH.dest.dev.lib, slash(path).split('/').pop()));
开发者ID:Anhmike,项目名称:hotelbooking-angular2,代码行数:2,代码来源:utils.ts

示例10: slash

import * as yargs from 'yargs';
import * as slash from 'slash';
import * as fse from 'fs-extra';

const argv = yargs.argv;
const CWD = slash(process.cwd());

process.env.APP_ENVIRONMENT = argv['env'] || process.env.APP_ENVIRONMENT || 'dev';

export const IS_PROD = process.env.APP_ENVIRONMENT === 'prod';

export const PORT = 5555;
export const LIVE_RELOAD_PORT = 4002;
export const APP_ROOT = '/';

const TMP = 'tmp';
const CLIENT_SRC = 'client';
const CLIENT_DEST = 'dist';
const NM = 'node_modules';
const INDEX_HTML = `${CLIENT_SRC}/index.html`;
const TS_LIB_DEF = [
  'typings/main/ambient/es6-shim/*.d.ts',
  'tools/manual_typings/module.d.ts'
];

export const PATHS = {
  cwd: CWD,
  src: {
    vendor: {
      js: [
        `${NM}/es6-shim/es6-shim.js`,
开发者ID:brunkb,项目名称:a2-contact,代码行数:31,代码来源:config.ts


注:本文中的slash.default方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。