Skip to content

Commit

Permalink
chore: update vitest and deno.lock dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
HuakunShen committed Feb 5, 2025
1 parent 46d6872 commit f895594
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: NPM Package Publish

on:
push:
branches: [develop, main, refactor/rename-ext]
branches: [develop, main]
release:
types: [created]
workflow_dispatch:
Expand Down
1 change: 0 additions & 1 deletion apps/cli/src/commands/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export { default as verifyCmd } from "./verify"
export { default as buildCmd } from "./build"
2 changes: 1 addition & 1 deletion apps/cli/src/commands/verify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export function verifySingleProject(projectPath: string): boolean {
logger.info(`name`, pkg.name)
logger.info(`version`, pkg.version)
logger.info(`identifier`, pkg.kunkun.identifier)
if (pkg.files.length === 0) {
if (pkg.files?.length ?? 0 === 0) {
logger.warn(
`"files" field is empty, it is recommended to include only the necessary files, e.g. dist`
)
Expand Down
42 changes: 21 additions & 21 deletions deno.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f895594

Please sign in to comment.