Skip to content
This repository was archived by the owner on Dec 12, 2023. It is now read-only.

Commit b94f13a

Browse files
authored
feat: add session composable, session API, docs
feat: Add session composable and session API
2 parents cd2171e + 9a5849d commit b94f13a

File tree

18 files changed

+2058
-2396
lines changed

18 files changed

+2058
-2396
lines changed

.editorconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ insert_final_newline = true
1010

1111
[*.md]
1212
trim_trailing_whitespace = false
13+
indent_size = 4

.github/session-example.png

-491 KB
Loading

.github/workflows/ci.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: nodejs CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v3
15+
- name: Use Node.js 16.14.2
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: 16.14.2
19+
20+
# Install locked dependencies and prepare types
21+
- run: npm ci
22+
- run: npm run dev:prepare
23+
24+
# Check if build and package artifacts can still be generated
25+
- run: npm run prepack
26+
27+
# Check linting and typing
28+
- run: npm run lint
29+
- run: npm run types

README.md

Lines changed: 215 additions & 36 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)