ember-codemod-pod-to-octane
Version:
Codemod to un-pod Ember apps, addons, and engines
11 lines (10 loc) • 399 B
JavaScript
import { mapAddonFolder } from './create-file-path-maps/addon/index.js';
import { mapAppFolder } from './create-file-path-maps/app/index.js';
import { mapTestsFolder } from './create-file-path-maps/tests/index.js';
export function createFilePathMaps(options) {
return {
addon: mapAddonFolder(options),
app: mapAppFolder(options),
tests: mapTestsFolder(options),
};
}