Skip to content

Commit 02a4e0f

Browse files
committed
feat: Switch default to ESM Modules
BREAKING CHANGE: Refactor public interfaces to follow common pattern Start using sfx-wasm bundler Update docs to use vitepress Signed-off-by: Gordon Smith <[email protected]>
1 parent 601fa4f commit 02a4e0f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+3633
-2219
lines changed

.eslintrc.js .eslintrc.cjs

File renamed without changes.

.github/workflows/deploy-docs.yml

+24-17
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# Simple workflow for deploying static content to GitHub Pages
2-
name: Deploy static content to Pages
1+
name: Deploy vitepress content to Pages
32

43
on:
5-
# Runs on pushes targeting the default branch
64
push:
7-
branches: ["trunk"]
5+
branches:
6+
- trunk
87

98
# Allows you to run this workflow manually from the Actions tab
109
workflow_dispatch:
@@ -14,29 +13,37 @@ permissions:
1413
contents: read
1514
pages: write
1615
id-token: write
17-
16+
1817
# Allow one concurrent deployment
1918
concurrency:
2019
group: "pages"
2120
cancel-in-progress: true
2221

2322
jobs:
24-
# Single deploy job since we're just deploying
23+
# Build job
2524
deploy:
26-
environment:
27-
name: github-pages
28-
url: ${{ steps.deployment.outputs.page_url }}
2925
runs-on: ubuntu-latest
3026
steps:
3127
- name: Checkout
3228
uses: actions/checkout@v3
33-
- name: Setup Pages
34-
uses: actions/configure-pages@v2
35-
- name: Upload artifact
36-
uses: actions/upload-pages-artifact@v1
29+
30+
- name: Setup Node
31+
uses: actions/setup-node@v3
3732
with:
38-
# Upload entire repository
39-
path: '.'
33+
node-version: 16
34+
35+
- name: Install Dependencies
36+
run: npm ci
37+
38+
- name: Build Docs
39+
run: npm run build
40+
4041
- name: Deploy to GitHub Pages
41-
id: deployment
42-
uses: actions/deploy-pages@v1
42+
uses: peaceiris/actions-gh-pages@v3
43+
with:
44+
github_token: ${{ secrets.GITHUB_TOKEN }}
45+
publish_dir: docs/.vitepress/dist
46+
force_orphan: true
47+
# cname: example.com # if wanna deploy to custom domain
48+
env:
49+
CI: true

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@
77
/coverage
88
/dist
99
/dist-test
10+
/docs/.vitepress/dist
11+
/docs/classes
12+
/docs/interfaces
13+
/docs/modules
14+
/docs/.nojekyll
15+
/docs/README.md
1016
/emsdk*
1117
/lib-*
1218
/node_modules

.vscode/launch.json

-12
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,6 @@
5757
],
5858
"type": "node"
5959
},
60-
{
61-
"name": "sfx-wasm",
62-
"program": "${workspaceFolder}/bin/sfx-wasm.mjs",
63-
"request": "launch",
64-
"args": [
65-
"./build/cpp/base91/base91lib.wasm"
66-
],
67-
"skipFiles": [
68-
"<node_internals>/**"
69-
],
70-
"type": "node"
71-
},
7260
{
7361
"name": "cli rollup wasm",
7462
"program": "${workspaceFolder}/output-node/test-wasm.js",

.vscode/tasks.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
{
2727
"type": "npm",
2828
"label": "Web Server",
29-
"script": "dev-start",
29+
"script": "serve",
3030
"problemMatcher": [],
3131
"presentation": {
3232
"group": "group-build"

CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ SET(EM_FLAGS
2020
"-s USE_ES6_IMPORT_META=0"
2121
# "-s WASM_BIGINT=1"
2222
"-s STANDALONE_WASM=0"
23+
"-s BINARYEN_ASYNC_COMPILATION=1"
2324
# "-s DYNAMIC_EXECUTION=0"
2425
"--pre-js ${CMAKE_CURRENT_SOURCE_DIR}/cpp/src/pre.js"
2526
"--post-js ${CMAKE_CURRENT_SOURCE_DIR}/cpp/src/post.js"

0 commit comments

Comments
 (0)