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: nuxt/icon
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.10.2
Choose a base ref
...
head repository: nuxt/icon
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.10.3
Choose a head ref
  • 3 commits
  • 7 files changed
  • 1 contributor

Commits on Dec 17, 2024

  1. chore: update deps

    antfu committed Dec 17, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    renovate-bot Mend Renovate
    Copy the full SHA
    1d4f471 View commit details

Commits on Dec 20, 2024

  1. fix: improve custom collection cache, fix reload of custom icons

    antfu committed Dec 20, 2024

    Verified

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

    antfu committed Dec 20, 2024
    Copy the full SHA
    0356c34 View commit details
Showing with 410 additions and 524 deletions.
  1. +13 −11 package.json
  2. +304 −453 pnpm-lock.yaml
  3. +3 −1 src/bundle-client.ts
  4. +12 −6 src/context.ts
  5. +12 −0 src/module.ts
  6. +63 −50 src/scan.ts
  7. +3 −3 test/extract.test.ts
24 changes: 13 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nuxt/icon",
"packageManager": "pnpm@9.15.0",
"version": "1.10.2",
"version": "1.10.3",
"license": "MIT",
"type": "module",
"repository": "nuxt/icon",
@@ -40,9 +40,9 @@
"test": "pnpm run test:unit --run && pnpm run test:playground --run"
},
"dependencies": {
"@iconify/collections": "^1.0.493",
"@iconify/collections": "^1.0.496",
"@iconify/types": "^2.0.0",
"@iconify/utils": "^2.2.0",
"@iconify/utils": "^2.2.1",
"@iconify/vue": "^4.2.0",
"@nuxt/devtools-kit": "^1.6.4",
"@nuxt/kit": "^3.14.1592",
@@ -51,31 +51,33 @@
"mlly": "^1.7.3",
"ohash": "^1.1.4",
"pathe": "^1.1.2",
"picomatch": "^4.0.2",
"std-env": "^3.8.0",
"tinyglobby": "^0.2.10"
},
"devDependencies": {
"@iconify-json/fluent-emoji-high-contrast": "^1.2.1",
"@iconify-json/logos": "^1.2.3",
"@iconify-json/ph": "^1.2.1",
"@iconify-json/simple-icons": "^1.2.15",
"@iconify-json/solar": "^1.2.1",
"@iconify-json/uil": "^1.2.1",
"@iconify-json/fluent-emoji-high-contrast": "^1.2.2",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/simple-icons": "^1.2.16",
"@iconify-json/solar": "^1.2.2",
"@iconify-json/uil": "^1.2.3",
"@nuxt/devtools": "^1.6.4",
"@nuxt/eslint-config": "^0.7.3",
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.14.1592",
"@nuxt/test-utils": "^3.15.1",
"@types/node": "^22.10.2",
"@types/picomatch": "^3.0.1",
"@unocss/nuxt": "^0.65.1",
"bumpp": "^9.9.1",
"changelogen": "^0.5.7",
"eslint": "^9.17.0",
"nuxt": "^3.14.1592",
"nuxthub": "^0.7.4",
"nuxthub": "^0.7.6",
"prettier": "^3.4.2",
"typescript": "~5.6.3",
"untyped": "^1.5.1",
"untyped": "^1.5.2",
"vite": "^6.0.3",
"vue-tsc": "^2.1.10"
},
Loading