From 195cf49010cc3657c5778322a30e130071972a17 Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Sun, 7 Jan 2024 07:59:47 +1100 Subject: [PATCH] chore: Fix incorrect npm tag for previous version release --- package.json | 2 +- pnpm-lock.yaml | 8 ++++---- scripts/publish.js | 2 ++ 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 098ba451e..33cba65e7 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "namespace": "@tanstack", "devDependencies": { "@solidjs/testing-library": "^0.8.5", - "@tanstack/config": "^0.1.7", + "@tanstack/config": "^0.1.8", "@testing-library/jest-dom": "^6.1.5", "@testing-library/react": "^14.1.2", "@testing-library/user-event": "^14.4.3", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index baf6000c7..c70ecf181 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: specifier: ^0.8.5 version: 0.8.5(@solidjs/router@0.8.3)(solid-js@1.7.12) '@tanstack/config': - specifier: ^0.1.7 - version: 0.1.7(@types/node@18.19.4)(esbuild@0.19.11)(typescript@5.2.2)(vite@5.0.10) + specifier: ^0.1.8 + version: 0.1.8(@types/node@18.19.4)(esbuild@0.19.11)(typescript@5.2.2)(vite@5.0.10) '@testing-library/jest-dom': specifier: ^6.1.5 version: 6.1.6(@types/jest@26.0.24)(vitest@1.1.0) @@ -3920,8 +3920,8 @@ packages: tslib: 2.6.2 dev: false - /@tanstack/config@0.1.7(@types/node@18.19.4)(esbuild@0.19.11)(typescript@5.2.2)(vite@5.0.10): - resolution: {integrity: sha512-+IbRTGbIEuWSNbouink96KL9aEGwhNzzy7DXtYg6CgCU5fpiGCIuNm7pGddEloTW1hHv+vvlqhlfx63F6ueWuA==} + /@tanstack/config@0.1.8(@types/node@18.19.4)(esbuild@0.19.11)(typescript@5.2.2)(vite@5.0.10): + resolution: {integrity: sha512-PK1fMUI+iOU8nVPV8KBEa7HykN2kA7Z4In5LRxywNU77rAZ5qj5os6k+mmGtall+nQmPr0JqkCc7rkYkCCp2qA==} engines: {node: '>=18'} hasBin: true dependencies: diff --git a/scripts/publish.js b/scripts/publish.js index 3a8462ae3..ba818b505 100644 --- a/scripts/publish.js +++ b/scripts/publish.js @@ -11,3 +11,5 @@ await publish({ tag: process.env.TAG, ghToken: process.env.GH_TOKEN, }) + +process.exit(0)