mirror of
https://github.com/kunkunsh/kunkun-ext-hacker-news.git
synced 2025-04-03 02:36:43 +00:00
Update package version to 0.0.11, modify npm publish workflow, and refactor build process
This commit is contained in:
parent
de5640f124
commit
5ff8e45b58
26
.github/workflows/npm-publish.yml
vendored
26
.github/workflows/npm-publish.yml
vendored
@ -1,6 +1,3 @@
|
||||
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
||||
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
|
||||
|
||||
name: NPM Package Publish
|
||||
|
||||
on:
|
||||
@ -25,20 +22,15 @@ jobs:
|
||||
- uses: oven-sh/setup-bun@v2
|
||||
- run: bun install
|
||||
- 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_VERSION=$(jq -r '.version' package.json)
|
||||
|
||||
# Get the version from npm registry
|
||||
REGISTRY_VERSION=$(npm show "$PACKAGE_NAME" version)
|
||||
|
||||
# Compare versions
|
||||
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
|
||||
npm view $PACKAGE_NAME@$PACKAGE_VERSION
|
||||
continue-on-error: true
|
||||
id: check_version
|
||||
- name: Publish
|
||||
if: steps.check_version.outcome != 'success'
|
||||
run: npm publish --provenance --access public
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
||||
|
4
build.ts
4
build.ts
@ -1,11 +1,11 @@
|
||||
import { watch } from "fs"
|
||||
import { join } from "path"
|
||||
import { refreshTemplateWorkerExtension } from "@kksh/api/dev"
|
||||
import { refreshTemplateWorkerCommand } from "@kksh/api/dev"
|
||||
import { $ } from "bun"
|
||||
|
||||
async function build() {
|
||||
await $`bun build --minify --target=browser --outdir=./dist ./src/index.ts`
|
||||
await refreshTemplateWorkerExtension()
|
||||
await refreshTemplateWorkerCommand()
|
||||
}
|
||||
|
||||
const srcDir = join(import.meta.dir, "src")
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"$schema": "https://schema.kunkun.sh/",
|
||||
"version": "0.0.10",
|
||||
"version": "0.0.11",
|
||||
"name": "kunkun-ext-hacker-news",
|
||||
"repository": "https://github.com/kunkunsh/kunkun-ext-hacker-news",
|
||||
"type": "module",
|
||||
@ -45,7 +45,7 @@
|
||||
"build": "bun build.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@kksh/api": "^0.0.48",
|
||||
"@kksh/api": "^0.1.1",
|
||||
"valibot": "^0.40.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { IconEnum } from "@kksh/api/models"
|
||||
import { Action, expose, Icon, List, open, toast, ui, WorkerExtension } from "@kksh/api/ui/worker"
|
||||
import { Action, expose, Icon, List, open, toast, ui, TemplateUiCommand } from "@kksh/api/ui/template"
|
||||
import {
|
||||
array,
|
||||
number,
|
||||
@ -48,7 +48,7 @@ function hackerNewsItemToListItem(item: HackerNewsItem, idx: number): List.Item
|
||||
})
|
||||
}
|
||||
|
||||
class HackerNews extends WorkerExtension {
|
||||
class HackerNews extends TemplateUiCommand {
|
||||
items: HackerNewsItem[]
|
||||
listitems: List.Item[]
|
||||
storyIds: number[]
|
||||
|
Loading…
x
Reference in New Issue
Block a user