1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 02:44:45 +00:00

chore: update package versions and integrate shared tsdown configuration

This commit is contained in:
2026-02-15 03:13:49 +07:00
parent 70d96b7f39
commit 1782184761
13 changed files with 87 additions and 24 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@robonen/vue",
"version": "0.0.11",
"version": "0.0.12",
"license": "Apache-2.0",
"description": "Collection of powerful tools for Vue",
"keywords": [
@@ -40,6 +40,7 @@
"devDependencies": {
"@robonen/oxlint": "workspace:*",
"@robonen/tsconfig": "workspace:*",
"@robonen/tsdown": "workspace:*",
"@vue/test-utils": "catalog:",
"oxlint": "catalog:",
"tsdown": "catalog:"

View File

@@ -1,11 +1,9 @@
import { defineConfig } from 'tsdown';
import { sharedConfig } from '@robonen/tsdown';
export default defineConfig({
...sharedConfig,
entry: ['src/index.ts'],
format: ['esm', 'cjs'],
dts: true,
clean: true,
hash: false,
external: ['vue'],
noExternal: [/^@robonen\//],
});