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


TypeScript version.replace方法代碼示例

本文整理匯總了TypeScript中undefined.version.replace方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript version.replace方法的具體用法?TypeScript version.replace怎麽用?TypeScript version.replace使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在undefined.version的用法示例。


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

示例1: updatePackageVersion

/** Updates the `package.json` file of the specified package. Replaces the version placeholder. */
function updatePackageVersion(packageDir: string) {
  let packagePath = join(packageDir, 'package.json');
  let packageConfig = require(packagePath);

  // Replace the `0.0.0-PLACEHOLDER` version name with the version of the root package.json file.
  packageConfig.version = packageConfig.version.replace('0.0.0-PLACEHOLDER', MATERIAL_VERSION);

  writeFileSync(packagePath, JSON.stringify(packageConfig, null, 2));
}
開發者ID:jcannata,項目名稱:material2,代碼行數:10,代碼來源:package-build.ts

示例2: updatePackageVersion

export function updatePackageVersion(packageDir: string) {
  const packagePath = join(packageDir, 'package.json');
  const packageConfig = require(packagePath);

  // Replace the `0.0.0-PLACEHOLDER` version name with the version of the root package.json file.
  packageConfig.version = packageConfig.version.replace('0.0.0-PLACEHOLDER', projectVersion);

  writeFileSync(packagePath, JSON.stringify(packageConfig, null, 2));
}
開發者ID:Chintuz,項目名稱:material2,代碼行數:9,代碼來源:package-versions.ts

示例3: zipFiles

async function zipFiles(modulePath, outPath) {
  const packageJson = require(path.join(modulePath, 'package.json'))
  outPath = outPath.replace(/%name%/gi, packageJson.name.replace(/[^\w-]/gi, '_'))
  outPath = outPath.replace(/%version%/gi, packageJson.version.replace(/[^\w-]/gi, '_'))

  if (!path.isAbsolute(outPath)) {
    outPath = path.join(modulePath, outPath)
  }

  debug(`Writing to "${outPath}"`)

  const files = glob.sync('**/*', {
    cwd: modulePath,
    nodir: true,
    ignore: ['node_modules/**', 'src/**']
  })

  debug(`Zipping ${files.length} files...`)

  await tar.create({ gzip: true, follow: true, file: outPath, portable: true }, files)
}
開發者ID:seffalabdelaziz,項目名稱:botpress,代碼行數:21,代碼來源:package.ts


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