We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14b03b3 commit 7a40c35Copy full SHA for 7a40c35
docs-viewer/src/-utils.ts
@@ -45,7 +45,7 @@ export function determinePackageManager(dir: string) {
45
export async function generateDocs() {
46
const currentVersion = require(path.join(workspaceRoot, 'package.json')).version;
47
const absoluteVersion = currentVersion.split('-')[0];
48
- const command = ['bun', 'gen', '--project', 'ember-data', '--version', absoluteVersion];
+ const command = ['bun', 'gen', '--skip-install', '--project', 'ember-data', '--version', absoluteVersion];
49
const proc = Bun.spawn(command, {
50
cwd: path.join(projectRoot, 'ember-jsonapi-docs'),
51
env: Object.assign({}, process.env, { COREPACK_INTEGRITY_KEYS: 0 }),
0 commit comments