Skip to content

Commit 4e3d2f3

Browse files
author
Shuwen Qian
committed
Add stubs for multifile build
1 parent 8b543ad commit 4e3d2f3

5 files changed

Lines changed: 35 additions & 0 deletions

File tree

gulp/env.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(function() {
2+
'use strict';
3+
4+
module.exports = {
5+
6+
};
7+
})();

gulp/tasks/build.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(function() {
2+
'use strict';
3+
4+
module.exports = function(gulp, plugins, env) {
5+
6+
};
7+
})();

gulp/tasks/docs.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(function() {
2+
'use strict';
3+
4+
module.exports = function(gulp, plugins, env) {
5+
6+
};
7+
})();

gulp/tasks/live.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(function() {
2+
'use strict';
3+
4+
module.exports = function(gulp, plugins, env) {
5+
6+
};
7+
})();

gulp/tasks/release.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(function() {
2+
'use strict';
3+
4+
module.exports = function(gulp, plugins, env) {
5+
6+
};
7+
})();

0 commit comments

Comments
 (0)