mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-05-17 21:10:43 +00:00
* onnxruntime react native binding * add react native backend * fix lint comments * fix react native backend for ios * remove unnecessary files to check in * move onnxruntime-common to devDependency * create two podspec files for iphoneos and iphonesimulator * revise README.md and add third party notices for react native * rename a package * rename a package and revise README * add a license into package.json * revise README and comments * fix typo * fix lint errors * fix lint errors * add a prepack script. touch index.tsx and App.tsx to resolve CI issue * remove a unsupported tsx format from clang-format * fix a type and add steps tp publish a react native npm package * resolve comments * fix clang format * remove promise wrap. change prepack to typescript
40 lines
1 KiB
JavaScript
40 lines
1 KiB
JavaScript
const path = require('path');
|
|
const blacklist = require('metro-config/src/defaults/blacklist');
|
|
const escape = require('escape-string-regexp');
|
|
const pak = require('../package.json');
|
|
|
|
const root = path.resolve(__dirname, '..');
|
|
|
|
const modules = Object.keys({
|
|
...pak.peerDependencies,
|
|
});
|
|
|
|
module.exports = {
|
|
projectRoot: __dirname,
|
|
watchFolders: [root],
|
|
|
|
// We need to make sure that only one version is loaded for peerDependencies
|
|
// So we blacklist them at the root, and alias them to the versions in example's node_modules
|
|
resolver: {
|
|
blacklistRE: blacklist(
|
|
modules.map(
|
|
(m) =>
|
|
new RegExp(`^${escape(path.join(root, 'node_modules', m))}\\/.*$`)
|
|
)
|
|
),
|
|
|
|
extraNodeModules: modules.reduce((acc, name) => {
|
|
acc[name] = path.join(__dirname, 'node_modules', name);
|
|
return acc;
|
|
}, {}),
|
|
},
|
|
|
|
transformer: {
|
|
getTransformOptions: async () => ({
|
|
transform: {
|
|
experimentalImportSupport: false,
|
|
inlineRequires: true,
|
|
},
|
|
}),
|
|
},
|
|
};
|