@wp-operations/wp-app 0.1.0 → 0.1.1

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/dist/index.js CHANGED
@@ -587,7 +587,7 @@ async function installationStep2(php) {
587
587
  headers: {
588
588
  "content-type": "application/x-www-form-urlencoded"
589
589
  },
590
- body: fields.toString()
590
+ body: new TextEncoder().encode(fields.toString())
591
591
  });
592
592
  }
593
593
 
package/dist/main.js CHANGED
@@ -723,7 +723,7 @@ async function installationStep2(php) {
723
723
  headers: {
724
724
  "content-type": "application/x-www-form-urlencoded"
725
725
  },
726
- body: fields.toString()
726
+ body: new TextEncoder().encode(fields.toString())
727
727
  });
728
728
  }
729
729
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wp-operations/wp-app",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "The wp-now revival. Zero-config local WordPress dev server on @php-wasm/node.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -42,10 +42,10 @@
42
42
  "@php-wasm/node": "0.6.16",
43
43
  "@php-wasm/universal": "0.6.16",
44
44
  "@wp-playground/blueprints": "0.6.16",
45
- "express": "4.19.2",
45
+ "express": "4.21.2",
46
46
  "express-fileupload": "1.4.0",
47
- "follow-redirects": "1.15.6",
48
- "fs-extra": "11.1.1",
47
+ "follow-redirects": "1.15.11",
48
+ "fs-extra": "11.3.2",
49
49
  "unzipper": "0.10.11",
50
50
  "yargs": "17.7.2"
51
51
  },