File tree Expand file tree Collapse file tree 3 files changed +247
-11
lines changed Expand file tree Collapse file tree 3 files changed +247
-11
lines changed Original file line number Diff line number Diff line change 1+ module . exports = function ( grunt ) {
2+
3+ grunt . initConfig ( {
4+ exec : {
5+ install_dependencies : {
6+ command : 'yarn install'
7+ } ,
8+ compile_alice : {
9+ command : 'node-gyp configure build' ,
10+ options : {
11+ cwd : '../signal_interface'
12+ }
13+ } ,
14+ clean_old_build : {
15+ command : 'yarn clear-build'
16+ } ,
17+ package_projects : {
18+ command : 'yarn package'
19+ } ,
20+ create_build : {
21+ command : 'yarn release'
22+ }
23+ }
24+ } ) ;
25+
26+ grunt . loadNpmTasks ( 'grunt-exec' ) ;
27+ grunt . registerTask ( 'default' , [ 'exec' ] ) ;
28+
29+ } ;
Original file line number Diff line number Diff line change 147147 "@criptext/criptext-js-tools" : " ^0.5.2" ,
148148 "electron" : " 8.0.0" ,
149149 "electron-builder" : " 22.4.0" ,
150- "electron-notarize" : " ^0.1.1"
150+ "electron-notarize" : " ^0.1.1" ,
151+ "grunt" : " ^1.2.1" ,
152+ "grunt-exec" : " ^3.0.0"
151153 },
152154 "dependencies" : {
153155 "@criptext/api" : " ^0.17.1" ,
You can’t perform that action at this time.
0 commit comments