Skip to content

Commit

Permalink
package2
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangnanscu committed Feb 23, 2024
1 parent 81b456c commit 41159c3
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xiangnanscu/lua2js",
"version": "0.22.0",
"version": "0.23.0",
"main": "src/lua2js.mjs",
"type": "module",
"bin": {
Expand All @@ -14,8 +14,10 @@
"commit": "git add . && git commit -am ",
"c": "npm run commit",
"push": "npm run commit",
"postpush": "uname -s | grep -q Darwin && while true; do git push origin && break; done || while true; do timeout 5 git push origin && break; done",
"pull": "while true; do timeout 5 git pull --recurse-submodules origin && break; done"
"_push": "git push --recurse-submodules=on-demand origin",
"_pull": "git pull --recurse-submodules origin",
"postpush": "uname -s | grep -q Darwin && npm run _push || while true; do timeout 5 npm run _push && break; done",
"pull": "uname -s | grep -q Darwin && npm run _pull || while true; do timeout 5 npm run _pull && break; done"
},
"dependencies": {
"@highlightjs/vue-plugin": "^2.1.0",
Expand Down

0 comments on commit 41159c3

Please sign in to comment.