File tree 5 files changed +59
-1
lines changed
5 files changed +59
-1
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ module.exports = [
37
37
step : "Starting the Server" ,
38
38
fn : async . startServer
39
39
} ,
40
+ {
41
+ step : "Adding serve static middlewares" ,
42
+ fn : async . addServeStaticMiddleware
43
+ } ,
40
44
{
41
45
step : "Starting the HTTPS Tunnel" ,
42
46
fn : async . startTunnel
Original file line number Diff line number Diff line change @@ -182,6 +182,18 @@ module.exports = {
182
182
}
183
183
} ) ;
184
184
} ,
185
+ /**
186
+ * @param bs
187
+ * @param done
188
+ */
189
+ addServeStaticMiddleware : function ( bs , done ) {
190
+ bs . options
191
+ . get ( "serveStatic" )
192
+ . forEach ( function ( dir ) {
193
+ bs . addMiddleware ( "*" , utils . serveStatic ( dir ) ) ;
194
+ } ) ;
195
+ done ( ) ;
196
+ } ,
185
197
/**
186
198
* @param {BrowserSync } bs
187
199
* @param {Function } done
Original file line number Diff line number Diff line change @@ -87,6 +87,12 @@ module.exports = {
87
87
88
88
middleware : false ,
89
89
90
+ /**
91
+ * Add additional directories from which static
92
+ * files should be served.
93
+ */
94
+ serveStatic : [ ] ,
95
+
90
96
/**
91
97
* Enable https for localhost development. **Note** - this is not needed for proxy
92
98
* option as it will be inferred from your target url.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " browser-sync" ,
3
3
"description" : " Live CSS Reload & Browser Syncing" ,
4
- "version" : " 2.7.13 " ,
4
+ "version" : " 2.8.0 " ,
5
5
"homepage" : " http://www.browsersync.io/" ,
6
6
"author" : {
7
7
"name" : " Shane Osbourne"
Original file line number Diff line number Diff line change
1
+ "use strict" ;
2
+
3
+ var browserSync = require ( "../../../index" ) ;
4
+
5
+ var request = require ( "supertest" ) ;
6
+ var assert = require ( "chai" ) . assert ;
7
+ var page = require ( "fs" ) . readFileSync ( "test/fixtures/index.html" , "utf-8" ) ;
8
+
9
+ describe ( "E2E `serveStatic` option" , function ( ) {
10
+
11
+ var bs ;
12
+
13
+ before ( function ( done ) {
14
+ browserSync . reset ( ) ;
15
+ var config = {
16
+ logLevel : "silent" ,
17
+ online : false ,
18
+ serveStatic : [ "test/fixtures" ]
19
+ } ;
20
+ bs = browserSync ( config , done ) . instance ;
21
+ } ) ;
22
+
23
+ after ( function ( ) {
24
+ bs . cleanup ( ) ;
25
+ } ) ;
26
+
27
+ it ( "can serve static files regardless of running mode" , function ( done ) {
28
+ request ( bs . server )
29
+ . get ( "/index.html" )
30
+ . expect ( 200 )
31
+ . end ( function ( err , res ) {
32
+ assert . equal ( res . text , page ) ;
33
+ done ( ) ;
34
+ } ) ;
35
+ } ) ;
36
+ } ) ;
You can’t perform that action at this time.
0 commit comments