Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/npm-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,18 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: 24
cache: 'yarn'
registry-url: https://registry.npmjs.org/

- run: yarn && yarn compile
- name: Enable Corepack
run: |
corepack enable
corepack prepare yarn@4.12.0 --activate
yarn --version

- run: yarn install --immutable && yarn compile

- run: npm publish
env:
Expand Down
15 changes: 11 additions & 4 deletions .github/workflows/upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,24 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v6
with:
node-version: 24
cache: "yarn"

- name: Enable Corepack
run: |
corepack enable
corepack prepare yarn@4.12.0 --activate
yarn --version

- uses: calcit-lang/setup-cr@0.0.8
with:
version: 0.12.14

- name: "compiles calcit to js"
run: caps --ci && cr -1 js
run: caps --ci && yarn install --immutable && cr js

- run: yarn && yarn vite build --base=./
- run: yarn vite build --base=./
name: Build web assets
Comment thread
tiye marked this conversation as resolved.

- name: Deploy to server
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ node_modules/
dist/

lib/
.yarn/*.gz
.vscode/

.DS_Store
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
1,604 changes: 0 additions & 1,604 deletions calcit.cirru

This file was deleted.

206 changes: 117 additions & 89 deletions compact.cirru

Large diffs are not rendered by default.

14 changes: 6 additions & 8 deletions deps.cirru
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@

{}
:calcit-version |0.9.13
:dependencies $ {}
|calcit-lang/lilac |main
|calcit-lang/memof |main
|Respo/respo.calcit |main
|Respo/respo-ui.calcit |main
|Respo/reel.calcit |main
{} (:calcit-version |0.12.14)
:dependencies $ {} (|Respo/reel.calcit |main)
|Respo/respo-ui.calcit |0.6.4
|Respo/respo.calcit |0.16.32
|Triadica/hud-nav |main
|calcit-lang/lilac |0.5.1
|calcit-lang/memof |0.0.23
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,23 @@
"name": "@webgpu-art/protea",
"version": "0.0.2-a1",
"main": "./lib/index.mjs",
"packageManager": "yarn@4.12.0",
"devDependencies": {
"@webgpu/types": "^0.1.63",
"bottom-tip": "^0.1.5",
"query-string": "^9.2.1",
"typescript": "^5.8.3",
"vite": "^7.0.0"
"vite": "^8.0.8"
},
"dependencies": {
"@calcit/procs": "^0.9.13",
"@calcit/procs": "^0.12.14",
"@triadica/touch-control": "^0.0.4-a1",
"ismobilejs": "^1.1.1"
},
"description": "> Compute boids with Triadica controls in WebGPU",
"scripts": {
"compile": "tsc -d",
"build": "cr js && yarn vite build --base=./",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
Expand Down
1,790 changes: 1,255 additions & 535 deletions yarn.lock

Large diffs are not rendered by default.

Loading