mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-01-12 22:47:24 +08:00
9 lines
203 B
JavaScript
9 lines
203 B
JavaScript
'use strict';
|
|
|
|
var path = require('path');
|
|
var detectProjectRoot = require('./detectProjectRoot');
|
|
|
|
module.exports = function(cwd, filePath) {
|
|
return path.resolve(detectProjectRoot(cwd), filePath);
|
|
};
|