mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-01-13 09:09:56 +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);
|
|
};
|