diff --git a/.eslintignore b/.eslintignore index c810ffb50d..c29c5fbb8d 100644 --- a/.eslintignore +++ b/.eslintignore @@ -14,7 +14,7 @@ test/views/*.js /*.js # typescript-generated files -js/react/**/*.js +ts/**/*.js # ES2015+ files diff --git a/.gitignore b/.gitignore index ac02d8728e..c1f9a6d9a4 100644 --- a/.gitignore +++ b/.gitignore @@ -24,4 +24,4 @@ test/test.js libtextsecure/test/test.js # React / TypeScript -js/react/**/*.js +ts/**/*.js diff --git a/Gruntfile.js b/Gruntfile.js index c5f360d087..46abd1ec20 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -107,7 +107,6 @@ module.exports = function(grunt) { '!js/logging.js', '!js/modules/**/*.js', '!js/Mp3LameEncoder.min.js', - '!js/react/**/*.js', '!js/signal_protocol_store.js', '!js/views/conversation_search_view.js', '!js/views/debug_log_view.js', @@ -162,7 +161,6 @@ module.exports = function(grunt) { '!js/libtextsecure.js', '!js/modules/**/*.js', '!js/Mp3LameEncoder.min.js', - '!js/react/**/*.js', '!js/WebAudioRecorderMp3.js', 'test/**/*.js', '!test/blanket_mocha.js', @@ -193,7 +191,7 @@ module.exports = function(grunt) { tasks: ['jscs'] }, transpile: { - files: ['./js/react/**/*.js'], + files: ['./ts/**/*.js'], tasks: ['exec:transpile'] } }, diff --git a/background.html b/background.html index 930015b707..ac5db582df 100644 --- a/background.html +++ b/background.html @@ -20,6 +20,12 @@ Signal + + +