Skip to content

Commit d8e7472

Browse files
committed
feat: impl kcl wasm playground
Signed-off-by: peefy <[email protected]>
1 parent 2c74f03 commit d8e7472

File tree

10,132 files changed

+1325931
-861
lines changed

Some content is hidden

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

10,132 files changed

+1325931
-861
lines changed

.DS_Store

6 KB
Binary file not shown.

.env

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/ci.yaml

Lines changed: 15 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,23 @@
1-
name: CI
1+
name: build
22
on:
33
pull_request:
4-
branches:
4+
branches:
55
- main
66
push:
7-
branches:
7+
branches:
88
- main
9-
109
jobs:
11-
test:
12-
name: Test
10+
build:
1311
runs-on: ubuntu-latest
14-
container:
15-
image: plutolang/pluto
1612
steps:
17-
- name: Check out code
18-
uses: actions/checkout@v4
19-
- name: Install dependencies
20-
run: |
21-
apt update
22-
apt install lsof
23-
npm install
24-
python3 -m pip install -r requirements.txt
25-
python3 -m pip install pytest
26-
- name: Build web
27-
run: cd web && npm install && npm run build
28-
- name: Test
29-
run: ./scripts/test.sh
13+
- name: Git checkout
14+
uses: actions/checkout@v2
15+
16+
- name: NPM install
17+
env:
18+
NODE_OPTIONS: "--max_old_space_size=4096"
19+
run: npm install
20+
- name: NPM build
21+
env:
22+
NODE_OPTIONS: "--max_old_space_size=4096"
23+
run: npm run build

.github/workflows/release.yaml

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

.gitignore

Lines changed: 1 addition & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1 @@
1-
*.db
2-
vendor
3-
4-
*.a
5-
*.o
6-
*.so
7-
8-
*.exe
9-
*.lib
10-
*.dll
11-
12-
a.out*
13-
zz_*
14-
/_build*
15-
*.dylib
16-
*.lock
17-
.kclvm
18-
19-
**/target/
20-
**/.DS_Store
21-
**/.vscode
22-
node_modules
23-
package-lock.json
24-
25-
# pluto
26-
.pluto/**/*
27-
__pycache__
1+
/dist
File renamed without changes.

Dockerfile

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

LICENSE

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

Makefile

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

README.md

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

0 commit comments

Comments
 (0)