chore: prepare v0.0.1 release
- Bump all packages to 0.0.1 - Add publishConfig.access: public to @vue-tui/cli - Disable tsgo for dts generation (missing native-preview dep) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-tui/cli",
|
"name": "@vue-tui/cli",
|
||||||
"version": "0.0.0",
|
"version": "0.0.1",
|
||||||
"bin": {
|
"bin": {
|
||||||
"vue-tui": "./dist/index.mjs"
|
"vue-tui": "./dist/index.mjs"
|
||||||
},
|
},
|
||||||
@@ -13,6 +13,9 @@
|
|||||||
"import": "./dist/index.mjs"
|
"import": "./dist/index.mjs"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"publishConfig": {
|
||||||
|
"access": "public"
|
||||||
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "vp pack",
|
"build": "vp pack",
|
||||||
"dev": "vp pack --watch"
|
"dev": "vp pack --watch"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-tui/runtime",
|
"name": "@vue-tui/runtime",
|
||||||
"version": "0.0.0",
|
"version": "0.0.1",
|
||||||
"description": "Vue-idiomatic terminal renderer in the spirit of React Ink.",
|
"description": "Vue-idiomatic terminal renderer in the spirit of React Ink.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"files": [
|
"files": [
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ export default defineConfig({
|
|||||||
plugins: [vueJsx()],
|
plugins: [vueJsx()],
|
||||||
pack: {
|
pack: {
|
||||||
entry: ["src/index.ts", "src/internal.ts"],
|
entry: ["src/index.ts", "src/internal.ts"],
|
||||||
dts: { tsgo: true },
|
dts: true,
|
||||||
exports: true,
|
exports: true,
|
||||||
},
|
},
|
||||||
lint: {
|
lint: {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vue-tui/testing",
|
"name": "@vue-tui/testing",
|
||||||
"version": "0.0.0",
|
"version": "0.0.1",
|
||||||
"description": "Test harness for @vue-tui/runtime.",
|
"description": "Test harness for @vue-tui/runtime.",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"files": [
|
"files": [
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ import vueJsx from "@vitejs/plugin-vue-jsx";
|
|||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
plugins: [vueJsx()],
|
plugins: [vueJsx()],
|
||||||
pack: {
|
pack: {
|
||||||
dts: { tsgo: true },
|
dts: true,
|
||||||
exports: true,
|
exports: true,
|
||||||
},
|
},
|
||||||
lint: {
|
lint: {
|
||||||
|
|||||||
Reference in New Issue
Block a user