本文整理匯總了TypeScript中polymer-project-config.ProjectConfig.loadConfigFromFile方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ProjectConfig.loadConfigFromFile方法的具體用法?TypeScript ProjectConfig.loadConfigFromFile怎麽用?TypeScript ProjectConfig.loadConfigFromFile使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類polymer-project-config.ProjectConfig
的用法示例。
在下文中一共展示了ProjectConfig.loadConfigFromFile方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: suiteSetup
suiteSetup(async function() {
// Building takes a few minutes.
this.timeout(10 * 60 * 1000);
await Promise.all([
// Does not lint clean at the moment.
// TODO: https://github.com/Polymer/tools/issues/274
// runCommand(binPath, ['lint', '--rules=polymer-3'], {cwd: dir}),
runCommand(binPath, ['build'], {cwd: dir}),
]);
const config =
ProjectConfig.loadConfigFromFile(path.join(dir, 'polymer.json'));
if (config == null) {
throw new Error('Failed to load shop\'s polymer.json');
}
assert.deepEqual(
config.builds.map((b) => b.name || 'default').sort(),
expectedBuildNames);
});