We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f74b2f commit db018faCopy full SHA for db018fa
tools/amd/build.js
@@ -15,7 +15,8 @@ const license = path.join(repoRoot, 'LICENSE');
15
16
const babelOptions = '--modules amd';
17
18
-const factoriesDestination = path.join(bowerRoot, 'factories');
+const libDestination = path.join(bowerRoot, 'lib');
19
+const factoriesDestination = path.join(libDestination, 'factories');
20
21
function bowerConfig() {
22
return Promise.all([
@@ -36,7 +37,7 @@ export default function BuildBower() {
36
37
.then(() => Promise.all([
38
bowerConfig(),
39
generateFactories(factoriesDestination, babelOptions),
- exec(`babel ${babelOptions} ${srcRoot} --out-dir ${bowerRoot}`),
40
+ exec(`babel ${babelOptions} ${srcRoot} --out-dir ${libDestination}`),
41
copy(readme, bowerRoot),
42
copy(license, bowerRoot)
43
]))
0 commit comments