aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.babel.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.babel.js')
-rw-r--r--gulpfile.babel.js8
1 files changed, 2 insertions, 6 deletions
diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index 1e6b1bbbd..f7c016c2b 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -70,16 +70,12 @@ const paths = {
70 javascripts: { 70 javascripts: {
71 src: 'src/**/*.js', 71 src: 'src/**/*.js',
72 dest: 'build/', 72 dest: 'build/',
73 watch: [ 73 watch: 'src/**/*.js',
74 'src/**/*.js',
75 ],
76 }, 74 },
77 typescripts: { 75 typescripts: {
78 src: ['src/**/*.ts', 'src/**/*.tsx'], 76 src: ['src/**/*.ts', 'src/**/*.tsx'],
79 dest: 'build/', 77 dest: 'build/',
80 watch: [ 78 watch: ['src/**/*.ts', 'src/**/*.tsx'],
81 'src/**/*.ts',
82 ],
83 }, 79 },
84}; 80};
85 81