26 lines
1.1 KiB
JavaScript
26 lines
1.1 KiB
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.getExportPathForDependencyWithOptions = getExportPathForDependencyWithOptions;
|
|
/**
|
|
* Copyright © 2023 650 Industries.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
const path_1 = __importDefault(require("path"));
|
|
const getCssDeps_1 = require("./getCssDeps");
|
|
function getExportPathForDependencyWithOptions(dependencyPath, { platform, src, serverRoot }) {
|
|
const bundlePath = path_1.default.relative(serverRoot, dependencyPath);
|
|
const relativePathname = path_1.default.join(path_1.default.dirname(bundlePath),
|
|
// Strip the file extension
|
|
path_1.default.basename(bundlePath, path_1.default.extname(bundlePath)));
|
|
const name = (0, getCssDeps_1.fileNameFromContents)({
|
|
filepath: relativePathname,
|
|
src,
|
|
});
|
|
return `_expo/static/js/${platform}/${name}.js`;
|
|
}
|
|
//# sourceMappingURL=exportPath.js.map
|