create-faas-app 8.0.0-beta.10 → 8.0.0-beta.12
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.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -34,7 +34,7 @@ let enquirer = require("enquirer");
|
|
|
34
34
|
enquirer = __toESM(enquirer);
|
|
35
35
|
|
|
36
36
|
//#region package.json
|
|
37
|
-
var version = "8.0.0-beta.
|
|
37
|
+
var version = "8.0.0-beta.11";
|
|
38
38
|
|
|
39
39
|
//#endregion
|
|
40
40
|
//#region src/action.ts
|
|
@@ -239,7 +239,7 @@ export default function HomePage() {
|
|
|
239
239
|
|
|
240
240
|
return (
|
|
241
241
|
<main style={{ margin: '5rem auto', maxWidth: 420, padding: 24 }}>
|
|
242
|
-
<h1>FaasJS
|
|
242
|
+
<h1>FaasJS App</h1>
|
|
243
243
|
<p>{message}</p>
|
|
244
244
|
<button type="button" onClick={fetchMessage} disabled={loading}>
|
|
245
245
|
{loading ? 'Loading...' : 'Call /home/api/hello'}
|
package/dist/index.mjs
CHANGED
|
@@ -5,7 +5,7 @@ import { dirname, join } from "node:path";
|
|
|
5
5
|
import enquirer from "enquirer";
|
|
6
6
|
|
|
7
7
|
//#region package.json
|
|
8
|
-
var version = "8.0.0-beta.
|
|
8
|
+
var version = "8.0.0-beta.11";
|
|
9
9
|
|
|
10
10
|
//#endregion
|
|
11
11
|
//#region src/action.ts
|
|
@@ -210,7 +210,7 @@ export default function HomePage() {
|
|
|
210
210
|
|
|
211
211
|
return (
|
|
212
212
|
<main style={{ margin: '5rem auto', maxWidth: 420, padding: 24 }}>
|
|
213
|
-
<h1>FaasJS
|
|
213
|
+
<h1>FaasJS App</h1>
|
|
214
214
|
<p>{message}</p>
|
|
215
215
|
<button type="button" onClick={fetchMessage} disabled={loading}>
|
|
216
216
|
{loading ? 'Loading...' : 'Call /home/api/hello'}
|