UNPKG

ember-codemod-pod-to-octane

Version:

Codemod to un-pod Ember apps, addons, and engines

11 lines (10 loc) 317 B
import { mapComponents } from './map-components.js'; import { mapRoutes } from './map-routes.js'; import { mapServices } from './map-services.js'; export function mapAppFolder(options) { return new Map([ ...mapComponents(options), ...mapRoutes(options), ...mapServices(options), ]); }