create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
44 lines (40 loc) • 1.27 kB
JavaScript
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*
* @format
*/
;
const canonicalize = require("metro-core/src/canonicalize");
function getGraphId(entryFile, options, _ref) {
let shallow = _ref.shallow,
experimentalImportBundleSupport = _ref.experimentalImportBundleSupport;
return JSON.stringify(
{
entryFile,
options: {
customTransformOptions:
options.customTransformOptions != null
? options.customTransformOptions
: null,
dev: options.dev,
experimentalImportSupport: options.experimentalImportSupport || false,
hot: options.hot,
minify: options.minify,
unstable_disableES6Transforms: options.unstable_disableES6Transforms,
platform: options.platform != null ? options.platform : null,
runtimeBytecodeVersion: options.runtimeBytecodeVersion,
type: options.type,
experimentalImportBundleSupport,
shallow,
unstable_transformProfile:
options.unstable_transformProfile || "default"
}
},
canonicalize
);
}
module.exports = getGraphId;