We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2e454e commit 68e4bf6Copy full SHA for 68e4bf6
.github/workflows/publish.yaml
@@ -15,11 +15,8 @@ jobs:
15
with:
16
node-version: 22
17
registry-url: "https://registry.npmjs.org"
18
- - name: Install Dependices
19
- run: make
20
- name: Pack and Publish
21
run: |
22
- make build-lib
23
- npm publish --provenance --access public
+ make build-pub
24
env:
25
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# 0.1.2
2
+
3
+Some rendering optimize.
4
5
# 0.1.1
6
7
- Fix error `zooming` logic.
Makefile
@@ -11,6 +11,12 @@ build-lib:
11
-rm -rf dist
12
$(JK) build
13
14
+build-pub: bootstrap build-lib
+ @echo "Build publish"
+ $(JK) pub -no-b
dev-server:
@echo "Start dev server"
@pnpm exec vite
0 commit comments