wirejs-deploy-amplify-basic 0.0.7-alpha → 0.0.8-alpha
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.
|
@@ -6,6 +6,17 @@ import { JSDOM } from 'jsdom';
|
|
|
6
6
|
import { useJSDOM } from 'wirejs-dom/v2';
|
|
7
7
|
import { Context, CookieJar } from 'wirejs-resources';
|
|
8
8
|
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
const http = require('http');
|
|
12
|
+
const fs = require('fs');
|
|
13
|
+
const path = require('path');
|
|
14
|
+
|
|
15
|
+
const { JSDOM } = require('jsdom');
|
|
16
|
+
const { useJSDOM } = require('wirejs-dom/v2');
|
|
17
|
+
const { Context, CookieJar } = require('wirejs-resources');
|
|
18
|
+
*/
|
|
19
|
+
|
|
9
20
|
const SSR_ROOT = path.join(path.dirname(module.filename), 'ssr');
|
|
10
21
|
|
|
11
22
|
const logger = {
|