@wdio/static-server-service 8.0.14 → 8.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.d.ts +1 -1
- package/build/index.d.ts.map +1 -1
- package/build/launcher.d.ts +1 -1
- package/build/launcher.d.ts.map +1 -1
- package/package.json +8 -6
package/build/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import StaticServerLauncher from './launcher.js';
|
|
2
|
-
import type { StaticServerOptions } from './types';
|
|
2
|
+
import type { StaticServerOptions } from './types.js';
|
|
3
3
|
export default class StaticServerService {
|
|
4
4
|
}
|
|
5
5
|
export declare const launcher: typeof StaticServerLauncher;
|
package/build/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,oBAAoB,MAAM,eAAe,CAAA;AAChD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,oBAAoB,MAAM,eAAe,CAAA;AAChD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,YAAY,CAAA;AAErD,MAAM,CAAC,OAAO,OAAO,mBAAmB;CAAI;AAC5C,eAAO,MAAM,QAAQ,6BAAuB,CAAA;AAC5C,cAAc,YAAY,CAAA;AAE1B,OAAO,CAAC,MAAM,CAAC;IACX,UAAU,WAAW,CAAC;QAClB,UAAU,aAAc,SAAQ,mBAAmB;SAAG;KACzD;CACJ"}
|
package/build/launcher.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Services } from '@wdio/types';
|
|
2
|
-
import type { FolderOption, MiddleWareOption } from './types';
|
|
2
|
+
import type { FolderOption, MiddleWareOption } from './types.js';
|
|
3
3
|
export default class StaticServerLauncher implements Services.ServiceInstance {
|
|
4
4
|
private _folders;
|
|
5
5
|
private _port;
|
package/build/launcher.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"launcher.d.ts","sourceRoot":"","sources":["../src/launcher.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAE3C,OAAO,KAAK,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"launcher.d.ts","sourceRoot":"","sources":["../src/launcher.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAA;AAE3C,OAAO,KAAK,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAA;AAMhE,MAAM,CAAC,OAAO,OAAO,oBAAqB,YAAW,QAAQ,CAAC,eAAe;IACzE,OAAO,CAAC,QAAQ,CAAuB;IACvC,OAAO,CAAC,KAAK,CAAQ;IACrB,OAAO,CAAC,WAAW,CAAoB;IACvC,OAAO,CAAC,OAAO,CAAC,CAAiB;gBAErB,EAAE,OAAO,EAAE,IAAW,EAAE,UAAe,EAAE,EAAE;QAAE,OAAO,CAAC,EAAE,YAAY,EAAE,GAAG,YAAY,CAAC;QAAC,IAAI,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,gBAAgB,EAAE,CAAA;KAAE;IAM5I,SAAS,CAAC,EAAE,SAAS,EAAE,EAAE;QAAE,SAAS,CAAC,EAAE,MAAM,CAAA;KAAE;CAyBxD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wdio/static-server-service",
|
|
3
|
-
"version": "8.0
|
|
3
|
+
"version": "8.1.0",
|
|
4
4
|
"description": "A WebdriverIO service that can serve your static websites",
|
|
5
5
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
6
6
|
"homepage": "https://github.com/webdriverio/webdriverio/tree/main/packages/wdio-static-server-service",
|
|
@@ -31,15 +31,17 @@
|
|
|
31
31
|
"types": "./build/index.d.ts",
|
|
32
32
|
"typeScriptVersion": "3.8.3",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@
|
|
35
|
-
"@types
|
|
36
|
-
"@wdio/logger": "8.0.14",
|
|
37
|
-
"@wdio/types": "8.0.14",
|
|
34
|
+
"@wdio/logger": "8.1.0",
|
|
35
|
+
"@wdio/types": "8.1.0",
|
|
38
36
|
"express": "^4.14.0",
|
|
39
37
|
"morgan": "^1.7.0"
|
|
40
38
|
},
|
|
39
|
+
"devDependencies": {
|
|
40
|
+
"@types/express": "^4.17.8",
|
|
41
|
+
"@types/morgan": "^1.9.1"
|
|
42
|
+
},
|
|
41
43
|
"publishConfig": {
|
|
42
44
|
"access": "public"
|
|
43
45
|
},
|
|
44
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "f505134606f99129c816acb00f22e39032e60820"
|
|
45
47
|
}
|