Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: antfu-collective/taze
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v18.6.0
Choose a base ref
...
head repository: antfu-collective/taze
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v18.7.1
Choose a head ref
  • 5 commits
  • 7 files changed
  • 2 contributors

Commits on Mar 6, 2025

  1. refactor: migrate catalogs handling to pnpm-catalogs-utils

    closes #162
    sxzz committed Mar 6, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    BurntSushi Andrew Gallant
    Copy the full SHA
    5d1a182 View commit details
  2. chore: upgrade deps

    sxzz committed Mar 6, 2025

    Verified

    This commit was signed with the committer’s verified signature.
    BurntSushi Andrew Gallant
    Copy the full SHA
    6ad0be6 View commit details
  3. chore: release v18.7.0

    sxzz committed Mar 6, 2025
    Copy the full SHA
    0bf1ff2 View commit details

Commits on Mar 7, 2025

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    ad9796b View commit details
  2. chore: release v18.7.1

    antfu committed Mar 7, 2025
    Copy the full SHA
    b4c1f1a View commit details
Showing with 1,160 additions and 1,340 deletions.
  1. +15 −14 package.json
  2. +1,077 −1,204 pnpm-lock.yaml
  3. +2 −0 pnpm-workspace.yaml
  4. +15 −54 src/io/pnpmWorkspaces.ts
  5. +2 −2 src/types.ts
  6. +0 −26 src/utils/yaml.ts
  7. +49 −40 test/pnpmCatalog.test.ts
29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "taze",
"type": "module",
"version": "18.6.0",
"packageManager": "pnpm@10.3.0",
"version": "18.7.1",
"packageManager": "pnpm@10.5.2",
"description": "A modern cli tool that keeps your deps fresh",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
@@ -35,35 +35,36 @@
},
"dependencies": {
"@antfu/ni": "^23.3.1",
"find-up-simple": "^1.0.0",
"find-up-simple": "^1.0.1",
"ofetch": "^1.4.1",
"package-manager-detector": "^0.2.9",
"package-manager-detector": "^0.2.11",
"pathe": "^2.0.3",
"pnpm-workspace-yaml": "^0.1.0",
"tinyexec": "^0.3.2",
"unconfig": "^7.0.0",
"unconfig": "^7.3.0",
"yaml": "^2.7.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.2.0",
"@antfu/utils": "^8.1.0",
"@npmcli/config": "^10.0.1",
"@antfu/eslint-config": "^4.6.0",
"@antfu/utils": "^9.1.0",
"@npmcli/config": "10.0.1",
"@types/cli-progress": "^3.11.6",
"@types/debug": "^4.1.12",
"@types/node": "^22.13.1",
"@types/node": "^22.13.9",
"@types/npm-package-arg": "^6.1.4",
"@types/npm-registry-fetch": "^8.0.7",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@types/yargs": "^17.0.33",
"ansis": "^3.12.0",
"ansis": "^3.17.0",
"bumpp": "^10.0.3",
"cli-progress": "^3.12.0",
"cross-env": "^7.0.3",
"debug": "^4.4.0",
"deepmerge": "^4.3.1",
"detect-indent": "^7.0.1",
"eslint": "^9.20.0",
"eslint": "^9.21.0",
"esno": "^4.8.0",
"fast-glob": "^3.3.3",
"fast-npm-meta": "^0.3.1",
@@ -75,9 +76,9 @@
"rimraf": "^6.0.1",
"semver": "^7.7.1",
"taze": "workspace:*",
"typescript": "^5.7.3",
"typescript": "^5.8.2",
"ufo": "^1.5.4",
"unbuild": "^3.3.1",
"vitest": "^3.0.5"
"unbuild": "^3.5.0",
"vitest": "^3.0.8"
}
}
Loading