1
1
/*global module:false*/
2
+
2
3
module . exports = function ( grunt ) {
3
4
4
5
// Project configuration.
@@ -8,8 +9,7 @@ module.exports = function(grunt) {
8
9
banner : '/*! jsSIP v@<%= pkg.version %> jssip.net | jssip.net/license */'
9
10
} ,
10
11
lint : {
11
- dist : 'dist/<%= pkg.name %>-<%= pkg.version %>.js' ,
12
- grunt : 'grunt.js'
12
+ dist : 'dist/<%= pkg.name %>-<%= pkg.version %>.js'
13
13
} ,
14
14
concat : {
15
15
dist : {
@@ -92,10 +92,48 @@ module.exports = function(grunt) {
92
92
} ) ;
93
93
94
94
// Default task.
95
- grunt . registerTask ( 'default' , 'concat:dist lint min concat:post concat:post_min' ) ;
95
+ grunt . registerTask ( 'default' , [ 'concat:dist' , ' lint' , ' min' , ' concat:post' , ' concat:post_min'] ) ;
96
96
97
97
// Test tasks.
98
- grunt . registerTask ( 'testNoWebRTC' , 'qunit:noWebRTC' ) ;
99
- grunt . registerTask ( 'testWebRTC' , 'qunit:WebRTC' ) ;
100
- grunt . registerTask ( 'test' , 'testNoWebRTC' ) ;
101
- } ;
98
+ grunt . registerTask ( 'testNoWebRTC' , [ 'qunit:noWebRTC' ] ) ;
99
+ grunt . registerTask ( 'test' , [ 'testNoWebRTC' ] ) ;
100
+
101
+ // Task for building JsSIP grammar.
102
+ grunt . registerTask ( 'grammar' , function ( ) {
103
+ // First compile JsSIP grammar with PEGjs.
104
+ console . log ( "grammar task: compiling JsSIP PEGjs grammar into Grammar.js ..." ) ;
105
+ var done = this . async ( ) ; // This is an async task.
106
+ var sys = require ( 'sys' ) ;
107
+ var exec = require ( 'child_process' ) . exec ;
108
+ var child ;
109
+
110
+ child = exec ( 'pegjs -e JsSIP.Grammar src/Grammar/src/Grammar.pegjs src/Grammar/dist/Grammar.js' , function ( error , stdout , stderr ) {
111
+ if ( error == null ) {
112
+ // Then modify the generated Grammar.js file with custom changes.
113
+ console . log ( "OK" ) ;
114
+ console . log ( "grammar task: applying custom changes to Grammar.js ..." ) ;
115
+ var fs = require ( 'fs' ) ;
116
+ var grammar = fs . readFileSync ( 'src/Grammar/dist/Grammar.js' ) . toString ( ) ;
117
+ var modified_grammar = grammar . replace ( / t h r o w n e w t h i s \. S y n t a x E r r o r \( ( [ \s \S ] * ?) \) ; ( [ \s \S ] * ?) } ( [ \s \S ] * ?) r e t u r n r e s u l t ; / , 'new this.SyntaxError($1);\n return -1;$2}$3return data;' ) ;
118
+ fs . writeFileSync ( 'src/Grammar/dist/Grammar.js' , modified_grammar ) ;
119
+ console . log ( "OK" ) ;
120
+
121
+ // Then minify Grammar.js.
122
+ console . log ( "grammar task: minifying Grammar.js ..." ) ;
123
+ child = exec ( 'cd src/Grammar/ && node minify.js' , function ( error , stdout , stderr ) {
124
+ if ( error == null ) {
125
+ console . log ( "OK" ) ;
126
+ done ( ) ; // Tell grunt that async task has succeeded.
127
+ } else {
128
+ sys . print ( 'ERROR: ' + stderr ) ;
129
+ done ( false ) ; // Tell grunt that async task has failed.
130
+ }
131
+ } ) ;
132
+ } else {
133
+ sys . print ( 'ERROR: ' + stderr ) ;
134
+ done ( false ) ; // Tell grunt that async task has failed.
135
+ }
136
+ } ) ;
137
+ } ) ;
138
+
139
+ } ;
0 commit comments