mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-23 07:19:58 +08:00
8 lines
195 B
JavaScript
8 lines
195 B
JavaScript
'use strict';
|
|
|
|
var path = require('path');
|
|
|
|
module.exports = function normalizeBlueprintOption(blueprint) {
|
|
return blueprint[0] === '.' ? path.resolve(process.cwd(), blueprint) : blueprint;
|
|
};
|