We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a95be86 commit 18d6ea4Copy full SHA for 18d6ea4
docs-viewer/src/-utils.ts
@@ -129,7 +129,7 @@ export async function maybeMakePNPMInstallable(details: ReturnType<typeof repoDe
129
await installDeps('pnpm', details);
130
131
if (packageJson.name === 'ember-api-docs') {
132
- const buildFile = fs.readFileSync(path.join(details.location, 'ember-cli-buildjs'), 'utf8');
+ const buildFile = fs.readFileSync(path.join(details.location, 'ember-cli-build.js'), 'utf8');
133
// deactivate prember
134
const newFile = buildFile.replace('prember: {', '__prember: {');
135
fs.writeFileSync(path.join(details.location, 'ember-cli-build.js'), newFile);
0 commit comments