Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Jul 25, 2022
1 parent cb73ea6 commit 21fa577
Show file tree
Hide file tree
Showing 6 changed files with 241 additions and 115 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/upload.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ name: Upload
on:
push:
branches:
- master
- main
pull_request: {}

Expand Down Expand Up @@ -32,7 +31,7 @@ jobs:
- name: add cr
run: |
mkdir -p $GITHUB_WORKSPACE/bin
wget -O $GITHUB_WORKSPACE/bin/cr http://repo.calcit-lang.org/binaries/linux/cr
wget -O $GITHUB_WORKSPACE/bin/cr https://github.com/calcit-lang/calcit/releases/download/0.6.1/cr
chmod +x $GITHUB_WORKSPACE/bin/cr
echo "::add-path::$GITHUB_WORKSPACE/bin"
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<body>
<div class="app" ></div>

<script type="module" src="./main.js" ></script>
<script type="module" src="./main.mjs" ></script>

</body>

Expand Down
10 changes: 0 additions & 10 deletions main.js

This file was deleted.

10 changes: 10 additions & 0 deletions main.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

import { main_$x_ } from "./js-out/unfolding-leaf.main.mjs"

main_$x_()

if (import.meta.hot) {
import.meta.hot.accept('./js-out/unfolding-leaf.main.mjs', (main) => {
main.reload_$x_()
})
}
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,18 @@
"version": "0.1.0",
"description": "Stack Workflow",
"main": "index.js",
"scripts": {
},
"scripts": {},
"repository": {
"type": "git",
"url": "[email protected]:Memkits/unfolding-leaf.git"
},
"author": "jiyinyiyong",
"dependencies": {
"@calcit/procs": "^0.4.16"
"@calcit/procs": "^0.6.1"
},
"license": "MIT",
"devDependencies": {
"bottom-tip": "^0.1.2",
"vite": "^2.4.4"
"bottom-tip": "^0.1.3",
"vite": "^3.0.3"
}
}
Loading

0 comments on commit 21fa577

Please sign in to comment.