diff --git a/apps/react/package.json b/apps/react/package.json index bb472fd..d4de3d7 100644 --- a/apps/react/package.json +++ b/apps/react/package.json @@ -20,7 +20,6 @@ "lint": "eslint -c .eslintrc.json 'src/**/*.{js,jsx,ts,tsx}'", "lint:fix": "yarn lint --fix", "build": "vite build -c ./vite.config.ts", - "release": "yarn build && npm publish", "dev": "vite ./playground" }, "repository": { diff --git a/apps/vue/package.json b/apps/vue/package.json index 454d360..ccbd3e4 100644 --- a/apps/vue/package.json +++ b/apps/vue/package.json @@ -20,8 +20,7 @@ "lint": "eslint -c .eslintrc.json 'src/**/*.{js,jsx,ts,tsx}'", "lint:fix": "yarn lint --fix", "build": "vite build -c ./vite.config.ts", - "dev": "vite ./playground", - "release": "yarn build && npm publish" + "dev": "vite ./playground" }, "repository": { "type": "git", diff --git a/package.json b/package.json index 4c462a3..3addf71 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "packages/*" ], "scripts": { - "release": "turbo run release", + "release": "yarn build && yarn changeset publish", "build": "turbo run build", "dev": "turbo run dev", "lint": "turbo run lint", diff --git a/turbo.json b/turbo.json index ef76325..50e3ace 100644 --- a/turbo.json +++ b/turbo.json @@ -11,9 +11,6 @@ }, "dev": { "cache": false - }, - "release": { - "cache": false } } }