UNPKG

create-electron-foundation

Version:

An interactive CLI to bootstrap a modern, type-safe, and scalable Electron application.

16 lines (15 loc) 533 B
// FUNCTIONS import { addPackageDependency } from '../utils/addPackageDependency.js'; export const reactRouterInstaller = ({ project_dir }) => { /** * Updates the project package.json with relevant package(s) and script(s) * for React Router V7 * * This does NOT 'npm i' any packages. * ####################################################################### */ addPackageDependency({ project_dir, dependencies: ['react-router'], // React Router V7 devMode: false, }); };