diff --git a/build/static_dist.js b/build/static_dist.js index ae7c765..7f0a27b 100644 --- a/build/static_dist.js +++ b/build/static_dist.js @@ -112,12 +112,21 @@ function addPackages(siteConfig, buildFolder) { return readFile(path.join(fullBuildFolderPath, "package.json")).then(function(packageContents){ var json = JSON.parse(packageContents); + var filePathedDeps = siteConfig.html.dependencies; - json.dependencies = _.assign(json.dependencies || {},siteConfig.html.dependencies); + for(var depName in siteConfig.html.dependencies) { + var possibleFilePath = siteConfig.dependencies[depName]; + + if (possibleFilePath.startsWith('file:')) { + filePathedDeps[depName] = possibleFilePath; + } + } + + json.dependencies = _.assign(json.dependencies || {},filePathedDeps); return writeFile( path.join(fullBuildFolderPath, "package.json"), JSON.stringify(json) ).then(function(){ - var deps = _.map(siteConfig.html.dependencies, function(version, packageName){ + var deps = _.map(filePathedDeps, function(version, packageName){ return '"'+packageName+'": callIfFunction( require("'+packageName+'") )'; });