Skip to content

Commit

Permalink
fix chrome detection; upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Sep 30, 2024
1 parent 59ed739 commit 66bd23c
Show file tree
Hide file tree
Showing 6 changed files with 208 additions and 207 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
node-version: 20
cache: 'yarn'

- uses: calcit-lang/[email protected].3
- uses: calcit-lang/[email protected].7
with:
version: '0.9.1'
bundler: false

- name: "compiles to js"
run: >
Expand Down
6 changes: 3 additions & 3 deletions calcit.cirru

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion compact.cirru
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@
:defs $ {}
|chrome-extension? $ %{} :CodeEntry (:doc |)
:code $ quote
def chrome-extension? $ and (some? js/chrome) (some? js/chrome.runtime) (some? js/chrome.runtime.id)
def chrome-extension? $ and (some? js/window.chrome) (some? js/window.chrome.runtime) (some? js/window.chrome.runtime.id)
|dev? $ %{} :CodeEntry (:doc |)
:code $ quote
def dev? $ = "\"dev" (get-env "\"mode" "\"release")
Expand Down
1 change: 1 addition & 0 deletions deps.cirru
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

{}
:calcit-version 0.9.5
:dependencies $ {}
|calcit-lang/lilac |main
|calcit-lang/memof |main
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"dependencies": {
"@calcit/procs": "^0.9.1",
"@google/generative-ai": "^0.16.0",
"axios": "^1.7.3",
"@calcit/procs": "^0.9.5",
"@google/generative-ai": "^0.20.0",
"axios": "^1.7.7",
"cirru-color": "^0.2.4",
"copy-text-to-clipboard": "^3.2.0"
},
"devDependencies": {
"bottom-tip": "^0.1.5",
"vite": "^5.3.5"
"vite": "^5.4.8"
},
"scripts": {
"build": "yarn vite build --base ./ && rm -rfv extension/dist && cp -vr dist extension/"
Expand Down
Loading

0 comments on commit 66bd23c

Please sign in to comment.