mirror of
https://github.com/kunkunsh/kunkun-ext-ip-info.git
synced 2025-04-03 19:06:42 +00:00
chore: update workflows for main branch, enhance npm publish checks, and increment package version to 0.1.2
This commit is contained in:
parent
5d30203630
commit
226fa4961b
2
.github/workflows/gcr-publish.yml
vendored
2
.github/workflows/gcr-publish.yml
vendored
@ -5,7 +5,7 @@ name: Node.js Package
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [dev]
|
branches: [main]
|
||||||
release:
|
release:
|
||||||
types: [created]
|
types: [created]
|
||||||
|
|
||||||
|
25
.github/workflows/npm-publish.yml
vendored
25
.github/workflows/npm-publish.yml
vendored
@ -26,20 +26,15 @@ jobs:
|
|||||||
- uses: oven-sh/setup-bun@v2
|
- uses: oven-sh/setup-bun@v2
|
||||||
- run: bun install
|
- run: bun install
|
||||||
- run: bun run build
|
- run: bun run build
|
||||||
- run: |
|
- name: Check if version is already published
|
||||||
|
run: |
|
||||||
|
PACKAGE_VERSION=$(node -p "require('./package.json').version")
|
||||||
PACKAGE_NAME=$(jq -r '.name' package.json)
|
PACKAGE_NAME=$(jq -r '.name' package.json)
|
||||||
PACKAGE_VERSION=$(jq -r '.version' package.json)
|
npm view $PACKAGE_NAME@$PACKAGE_VERSION
|
||||||
|
continue-on-error: true
|
||||||
# Get the version from npm registry
|
id: check_version
|
||||||
REGISTRY_VERSION=$(npm show "$PACKAGE_NAME" version)
|
- name: Publish
|
||||||
|
if: steps.check_version.outcome != 'success'
|
||||||
# Compare versions
|
run: npm publish --provenance --access public
|
||||||
if [ "$PACKAGE_VERSION" == "$REGISTRY_VERSION" ]; then
|
|
||||||
echo "Version $PACKAGE_VERSION already exists in the npm registry."
|
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
echo "Version $PACKAGE_VERSION does not exist in the npm registry. Proceeding..."
|
|
||||||
npm publish --provenance --access public
|
|
||||||
fi
|
|
||||||
env:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
4
build.ts
4
build.ts
@ -1,11 +1,11 @@
|
|||||||
import { watch } from "fs"
|
import { watch } from "fs"
|
||||||
import { join } from "path"
|
import { join } from "path"
|
||||||
import { refreshTemplateWorkerExtension } from "@kksh/api/dev"
|
import { refreshTemplateWorkerCommand } from "@kksh/api/dev"
|
||||||
import { $ } from "bun"
|
import { $ } from "bun"
|
||||||
|
|
||||||
async function build() {
|
async function build() {
|
||||||
await $`bun build --minify --target=browser --outdir=./dist ./src/index.ts`
|
await $`bun build --minify --target=browser --outdir=./dist ./src/index.ts`
|
||||||
await refreshTemplateWorkerExtension()
|
await refreshTemplateWorkerCommand()
|
||||||
}
|
}
|
||||||
|
|
||||||
const srcDir = join(import.meta.dir, "src")
|
const srcDir = join(import.meta.dir, "src")
|
||||||
|
2
jsr.json
2
jsr.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@kunkun/kunkun-ext-ip-info",
|
"name": "@kunkun/kunkun-ext-ip-info",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"exports": "./mod.ts",
|
"exports": "./mod.ts",
|
||||||
"publish": {
|
"publish": {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://schema.kunkun.sh/",
|
"$schema": "https://schema.kunkun.sh/",
|
||||||
"name": "kunkun-ext-ip-info",
|
"name": "kunkun-ext-ip-info",
|
||||||
"version": "0.1.1",
|
"version": "0.1.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"module": "index.ts",
|
"module": "index.ts",
|
||||||
"repository": "https://github.com/kunkunsh/kunkun-ext-ip-info",
|
"repository": "https://github.com/kunkunsh/kunkun-ext-ip-info",
|
||||||
@ -43,7 +43,7 @@
|
|||||||
"mod.ts"
|
"mod.ts"
|
||||||
],
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@kksh/api": "^0.0.52"
|
"@kksh/api": "^0.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/bun": "latest",
|
"@types/bun": "latest",
|
||||||
|
@ -9,8 +9,8 @@ import {
|
|||||||
log,
|
log,
|
||||||
toast,
|
toast,
|
||||||
ui,
|
ui,
|
||||||
WorkerExtension
|
TemplateUiCommand
|
||||||
} from "@kksh/api/ui/worker"
|
} from "@kksh/api/ui/template"
|
||||||
import { boolean, number, object, parse, safeParse, string, type InferOutput } from "valibot"
|
import { boolean, number, object, parse, safeParse, string, type InferOutput } from "valibot"
|
||||||
|
|
||||||
const IpApiJsonSchema = object({
|
const IpApiJsonSchema = object({
|
||||||
@ -68,7 +68,7 @@ function mapIpInfoToListItem(ip: IpListItem): List.Item {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
class IpInfo extends WorkerExtension {
|
class IpInfo extends TemplateUiCommand {
|
||||||
ip?: InferOutput<typeof IpApiJsonSchema>
|
ip?: InferOutput<typeof IpApiJsonSchema>
|
||||||
listitems: List.Item[] = []
|
listitems: List.Item[] = []
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user