Skip to content

Commit dc8c5e8

Browse files
committed
Merge pull request react-bootstrap#578 from AlexKVal/fix547
Fix for bug 547 in tools/release.
2 parents dd0c028 + 6b9c250 commit dc8c5e8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/build.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import lib from './lib/build';
77
import docs from '../docs/build';
88
import dist from './dist/build';
99
import { copy } from './fs-utils';
10-
import { setExecOptions } from './exec';
10+
import { exec, setExecOptions } from './exec';
1111

1212
import yargs from 'yargs';
1313

@@ -37,7 +37,7 @@ export default function Build(noExitOnFailure) {
3737
lib(),
3838
bower(),
3939
dist(),
40-
docs()
40+
exec(`npm run docs-build`)
4141
])
4242
.then(() => copy(distFolder, amdFolder));
4343

0 commit comments

Comments
 (0)