diff --git a/CHANGELOG.md b/CHANGELOG.md index 7624151..25b95f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [1.3.1](https://github.com/vexip-ui/nuxt/compare/v1.3.0...v1.3.1) (2024-01-30) + + + # [1.3.0](https://github.com/vexip-ui/nuxt/compare/v1.2.2...v1.3.0) (2024-01-30) diff --git a/package.json b/package.json index 7c6ba60..0e120af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vexip-ui/nuxt", - "version": "1.3.0", + "version": "1.3.1", "type": "module", "license": "MIT", "author": "qmhc", diff --git a/scripts/publish.ts b/scripts/publish.ts index 5f71222..6403c41 100644 --- a/scripts/publish.ts +++ b/scripts/publish.ts @@ -1,5 +1,3 @@ -import { resolve } from 'node:path' - import minimist from 'minimist' import { logger, publish } from '@vexip-ui/scripts' import { rootDir } from './constant' @@ -15,7 +13,7 @@ const isDryRun = args.dry || args.d const releaseTag = args.tag || args.t publish({ - pkgDir: resolve(rootDir, 'package.json'), + pkgDir: rootDir, isDryRun, releaseTag }).catch(error => {