Skip to content

Commit 6e4b7f3

Browse files
committed
Remove auto-generated modules content and bump actions
1 parent d0ea485 commit 6e4b7f3

40 files changed

Lines changed: 7 additions & 16249 deletions

File tree

.github/workflows/site.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@v6
2424

2525
- name: Install, build, and upload site
26-
uses: withastro/action@v5
26+
uses: withastro/action@v6
2727
#with:
2828
# path: .
2929

@@ -38,5 +38,5 @@ jobs:
3838
steps:
3939
- name: Deploy to GitHub Pages
4040
id: deployment
41-
uses: actions/deploy-pages@v4
41+
uses: actions/deploy-pages@v5
4242

src/content/docs/docs/modes.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ title: 'Lite and Fuse Modes'
33
permalink: /docs/modes/
44
---
55

6-
Skip supports two modes for bringing your Swift code to Android:
6+
Skip supports both a *compiled* "Fuse" mode - in which your Swift is compiled natively for Android - and a *transpiled* "Lite" mode - in which your Swift is transpiled into Kotlin. The mode is specified at the level of a Swift module. We refer to apps that primarily use native mode as **Skip Fuse** apps, and apps that primarily use transpiled mode as **Skip Lite** apps.
7+
8+
:::note
9+
It is not uncommon to use both compiled and transpiled modules within a single Swift-on-Android app.
10+
:::
711

812
- **Skip Fuse** (native mode): Your Swift is compiled natively for Android using the [official Swift SDK for Android](https://www.swift.org/blog/swift-6.3-released/#android). You get full Swift language support, the standard library, and Foundation.
913
- **Skip Lite** (transpiled mode): Your Swift source code is converted into equivalent Kotlin source code, which is then compiled by the standard Kotlin compiler. This maximizes interoperability with Kotlin and Java libraries.

src/content/docs/docs/modules/index.md

Lines changed: 0 additions & 45 deletions
This file was deleted.

0 commit comments

Comments
 (0)