Skip to content

Commit 5fb046b

Browse files
committed
Wire Gulp backend compilation tasks with the tool
This is to allow for calling, e.g., `# gulp backend`.
1 parent 570f3d1 commit 5fb046b

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

build/conf.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ export default {
3535
app: path.join(basePath, 'src/app'),
3636
assets: path.join(basePath, 'src/app/assets'),
3737
base: basePath,
38+
backendSrc: path.join(basePath, 'src/app/backend'),
39+
backendTmp: path.join(basePath, '.tmp/backend'),
3840
bowerComponents: path.join(basePath, 'bower_components'),
3941
build: path.join(basePath, 'build'),
4042
dist: path.join(basePath, 'dist'),

gulpfile.babel.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,13 @@
1818
*
1919
* Learn more at: http://gulpjs.com
2020
*/
21+
import './build/backend';
2122
import './build/build';
2223
import './build/index';
2324
import './build/script';
2425
import './build/serve';
2526
import './build/style';
2627
import './build/test';
2728

29+
2830
// No business logic in this file.

0 commit comments

Comments
 (0)