|
|
@ -194,6 +194,10 @@ module.exports = function(grunt) {
|
|
|
|
files: ['./libtextsecure/*.js', './libtextsecure/storage/*.js'],
|
|
|
|
files: ['./libtextsecure/*.js', './libtextsecure/storage/*.js'],
|
|
|
|
tasks: ['concat:libtextsecure'],
|
|
|
|
tasks: ['concat:libtextsecure'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
protobuf: {
|
|
|
|
|
|
|
|
files: ['./protos/SignalService.proto'],
|
|
|
|
|
|
|
|
tasks: ['exec:build-protobuf'],
|
|
|
|
|
|
|
|
},
|
|
|
|
sass: {
|
|
|
|
sass: {
|
|
|
|
files: ['./stylesheets/*.scss'],
|
|
|
|
files: ['./stylesheets/*.scss'],
|
|
|
|
tasks: ['sass'],
|
|
|
|
tasks: ['sass'],
|
|
|
@ -218,6 +222,9 @@ module.exports = function(grunt) {
|
|
|
|
transpile: {
|
|
|
|
transpile: {
|
|
|
|
cmd: 'yarn transpile',
|
|
|
|
cmd: 'yarn transpile',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
'build-protobuf': {
|
|
|
|
|
|
|
|
cmd: 'yarn build-protobuf',
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
'test-release': {
|
|
|
|
'test-release': {
|
|
|
|
osx: {
|
|
|
|
osx: {
|
|
|
@ -503,6 +510,7 @@ module.exports = function(grunt) {
|
|
|
|
'copy:deps',
|
|
|
|
'copy:deps',
|
|
|
|
'sass',
|
|
|
|
'sass',
|
|
|
|
'date',
|
|
|
|
'date',
|
|
|
|
|
|
|
|
'exec:build-protobuf',
|
|
|
|
'exec:transpile',
|
|
|
|
'exec:transpile',
|
|
|
|
]);
|
|
|
|
]);
|
|
|
|
};
|
|
|
|
};
|
|
|
|