@modastar/z-router 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/.github/workflows/publish.yml +0 -38
- package/demo/dist/assets/index-BnRxLDj4.js +0 -23
- package/demo/dist/assets/index-C0uITd16.css +0 -1
- package/demo/dist/assets/index-CejLCVJl.js +0 -1
- package/demo/dist/index.html +0 -14
- package/dist/index.cjs +0 -3
- package/dist/index.cjs.map +0 -1
- package/dist/index.d.cts +0 -166
- package/dist/index.d.ts +0 -166
- package/dist/index.js +0 -3
- package/dist/index.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
name: Publish Package
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
tags:
|
|
6
|
-
- "v*"
|
|
7
|
-
|
|
8
|
-
permissions:
|
|
9
|
-
id-token: write
|
|
10
|
-
contents: read
|
|
11
|
-
|
|
12
|
-
jobs:
|
|
13
|
-
publish:
|
|
14
|
-
runs-on: ubuntu-latest
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v4
|
|
17
|
-
|
|
18
|
-
- uses: actions/setup-node@v4
|
|
19
|
-
with:
|
|
20
|
-
node-version: "24"
|
|
21
|
-
registry-url: "https://registry.npmjs.org"
|
|
22
|
-
|
|
23
|
-
- name: Setup pnpm
|
|
24
|
-
uses: pnpm/action-setup@v4
|
|
25
|
-
|
|
26
|
-
- name: Cache pnpm store and node_modules
|
|
27
|
-
uses: actions/cache@v4
|
|
28
|
-
with:
|
|
29
|
-
path: |
|
|
30
|
-
node_modules
|
|
31
|
-
~/.pnpm-store
|
|
32
|
-
key: ${{ runner.os }}-pnpm-${{ hashFiles('pnpm-lock.yaml') }}
|
|
33
|
-
|
|
34
|
-
- name: Install dependencies
|
|
35
|
-
run: pnpm install
|
|
36
|
-
|
|
37
|
-
- name: Publish package
|
|
38
|
-
run: pnpm publish --provenance --access public --no-git-checks
|