Skip to content

Commit

Permalink
chore: Update dependencies (#45)
Browse files Browse the repository at this point in the history
* chore: Update dependencies

* Update snapshot

* Dedupe
  • Loading branch information
lachlancollins authored Feb 17, 2024
1 parent 8a664cf commit 225c43d
Show file tree
Hide file tree
Showing 8 changed files with 350 additions and 475 deletions.
4 changes: 1 addition & 3 deletions bin/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Liftoff from 'liftoff'
import minimist from 'minimist'
import v8flags from 'v8flags'
import interpret from 'interpret'
import { Command } from 'commander'
import { program } from 'commander'
import { publish } from '../src/publish/index.js'

const args = process.argv.slice(2)
Expand Down Expand Up @@ -76,8 +76,6 @@ Config.prepare(
Config.execute(prepEnv, (env) => {
requireOrImport(env.configPath)
.then((configOpts) => {
const program = new Command()

program
.name('@tanstack/config')
.description(
Expand Down
6 changes: 3 additions & 3 deletions integrations/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@
"test:build": "vite build && vitest && publint --strict && attw --pack"
},
"dependencies": {
"@tanstack/query-core": "^5.17.19",
"@tanstack/query-core": "^5.20.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@tanstack/config": "<1.0.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1"
}
}
4 changes: 2 additions & 2 deletions integrations/solid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"test:build": "vite build && vitest && publint --strict && attw --pack"
},
"dependencies": {
"solid-js": "^1.8.11"
"solid-js": "^1.8.15"
},
"devDependencies": {
"@tanstack/config": "<1.0.0",
"vite-plugin-solid": "^2.8.2"
"vite-plugin-solid": "^2.10.1"
}
}
2 changes: 1 addition & 1 deletion integrations/solid/snap/cjs/App.cjs.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion integrations/solid/snap/esm/App.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions integrations/vue/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
"test:build": "vite build && vitest && publint --strict"
},
"dependencies": {
"vue": "^3.4.15"
"vue": "^3.4.19"
},
"devDependencies": {
"@tanstack/config": "<1.0.0",
"@vitejs/plugin-vue": "^5.0.3"
"@vitejs/plugin-vue": "^5.0.4"
}
}
48 changes: 25 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,23 @@
"preferGlobal": false,
"sideEffects": false,
"files": [
"src",
"bin"
"bin",
"src"
],
"packageManager": "[email protected]",
"scripts": {
"cipublish": "node ./bin/config.js publish --cwd .",
"cipublishforce": "CI=true pnpm cipublish",
"prettier": "prettier --ignore-unknown '**/*'",
"prettier:write": "pnpm run prettier --write",
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm",
"test": "pnpm run test:ci",
"test:pr": "nx run-many --targets=test:format,test:eslint,test:types,test:build",
"test:ci": "nx run-many --targets=test:format,test:eslint,test:types,test:build",
"test:build": "publint --strict",
"test:types": "tsc",
"test:eslint": "eslint --ext .js,.ts,.tsx ./bin ./src",
"test:format": "pnpm run prettier --check",
"test:pr": "nx run-many --targets=test:format,test:eslint,test:types,test:build",
"test:ci": "nx run-many --targets=test:format,test:eslint,test:types,test:build"
"prettier": "prettier --ignore-unknown '**/*'",
"prettier:write": "pnpm run prettier --write",
"cipublish": "node ./bin/config.js publish --cwd .",
"cipublishforce": "CI=true pnpm cipublish"
},
"nx": {
"includedScripts": [
Expand All @@ -63,9 +65,9 @@
]
},
"dependencies": {
"@commitlint/parse": "^18.4.4",
"@commitlint/parse": "^18.6.1",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"commander": "^12.0.0",
"current-git-branch": "^1.1.0",
"esbuild-register": "^3.5.0",
"git-log-parser": "^1.2.0",
Expand All @@ -74,40 +76,40 @@
"liftoff": "^4.0.0",
"luxon": "^3.4.4",
"minimist": "^1.2.8",
"rollup-plugin-preserve-directives": "^0.3.1",
"semver": "^7.5.4",
"rollup-plugin-preserve-directives": "^0.4.0",
"semver": "^7.6.0",
"stream-to-array": "^2.3.0",
"v8flags": "^4.0.1",
"vite-plugin-dts": "^3.7.1",
"vite-plugin-dts": "^3.7.2",
"vite-plugin-externalize-deps": "^0.8.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.13.6",
"@arethetypeswrong/cli": "^0.13.10",
"@types/current-git-branch": "^1.1.6",
"@types/eslint": "^8.56.2",
"@types/git-log-parser": "^1.2.3",
"@types/interpret": "^1.1.3",
"@types/jsonfile": "^6.1.4",
"@types/liftoff": "^4.0.3",
"@types/luxon": "^3.4.1",
"@types/luxon": "^3.4.2",
"@types/minimist": "^1.2.5",
"@types/node": "^18.19.8",
"@types/semver": "^7.5.6",
"@types/semver": "^7.5.7",
"@types/stream-to-array": "^2.3.3",
"@types/v8flags": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"jsdom": "^23.2.0",
"nx": "^17.3.2",
"jsdom": "^24.0.0",
"nx": "^18.0.4",
"prettier": "^4.0.0-alpha.8",
"publint": "^0.2.7",
"type-fest": "^4.9.0",
"type-fest": "^4.10.2",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.1"
"vite": "^5.1.3",
"vitest": "^1.3.0"
}
}
Loading

0 comments on commit 225c43d

Please sign in to comment.