Skip to content

Commit 3967ccb

Browse files
committed
Node + version bumps
1 parent b7700f7 commit 3967ccb

File tree

6 files changed

+1833
-15738
lines changed

6 files changed

+1833
-15738
lines changed

.github/workflows/continuous-deployment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- uses: actions/checkout@v3
1010
- uses: actions/setup-node@v3
1111
with:
12-
node-version: "16"
12+
node-version: "18"
1313
- name: Install npm dependencies
1414
run: npm ci
1515
- name: Build for production

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nodejs 16.13.1
1+
nodejs 18.18.0

docs/examples/ajax.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ axios.post("https://submit-form.com/your-form-id", {
217217
xhr.send(
218218
JSON.stringify({
219219
message: "Hello, World!",
220-
}),
220+
})
221221
);
222222
</script>
223223
</body>
@@ -242,7 +242,7 @@ axios.post("https://submit-form.com/your-form-id", {
242242
message: "Hello, World",
243243
},
244244
null,
245-
"json", // dataType must be set to json
245+
"json" // dataType must be set to json
246246
)
247247
.then(function (response) {
248248
console.log(response);

docs/examples/webflow.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,10 @@ lang: en-US
141141
<!-- Project Settings > Custom Code > Footer Code -->
142142

143143
<script src="https://unpkg.com/@formspark/formson"></script>
144-
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js" defer></script>
144+
<script
145+
src="https://challenges.cloudflare.com/turnstile/v0/api.js"
146+
defer
147+
></script>
145148

146149
<script type="text/javascript">
147150
$('form[action^="https://submit-form.com"]').each(function (i, el) {

0 commit comments

Comments
 (0)