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-modules/color-mode
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.4.1
Choose a base ref
...
head repository: nuxt-modules/color-mode
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.4.2
Choose a head ref
  • 5 commits
  • 6 files changed
  • 3 contributors

Commits on Jun 21, 2024

  1. chore(deps): update nuxt framework (#265)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jun 21, 2024
    Copy the full SHA
    20a16dc View commit details

Commits on Jun 24, 2024

  1. fix: remove newline at end of minified script (#268)

    Gerbuuun authored Jun 24, 2024
    Copy the full SHA
    0ccbc5c View commit details
  2. chore(deps): update all non-major dependencies (#260)

    renovate[bot] authored Jun 24, 2024
    Copy the full SHA
    6a3a05b View commit details
  3. chore(deps): update devdependency @typescript-eslint/parser to ^7.14.1 (

    #269)
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Jun 24, 2024
    Copy the full SHA
    1c5f2ae View commit details
  4. chore(release): 3.4.2

    danielroe committed Jun 24, 2024
    Copy the full SHA
    cf660b4 View commit details
Showing with 2,576 additions and 1,807 deletions.
  1. +7 −0 CHANGELOG.md
  2. +1 −1 docs/package.json
  3. +17 −16 package.json
  4. +1 −1 playground/package.json
  5. +2,549 −1,788 pnpm-lock.yaml
  6. +1 −1 src/module.ts
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [3.4.2](https://github.com/nuxt-modules/color-mode/compare/v3.4.1...v3.4.2) (2024-06-24)


### Bug Fixes

* remove newline at end of minified script ([#268](https://github.com/nuxt-modules/color-mode/issues/268)) ([0ccbc5c](https://github.com/nuxt-modules/color-mode/commit/0ccbc5c84c6146aba01616281e0bcfe868a10491))

### [3.4.1](https://github.com/nuxt-modules/color-mode/compare/v3.4.0...v3.4.1) (2024-04-26)


2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -13,6 +13,6 @@
"devDependencies": {
"@nuxt-themes/docus": "^1.15.0",
"@nuxtjs/plausible": "^1.0.0",
"nuxt": "^3.11.2"
"nuxt": "^3.12.2"
}
}
33 changes: 17 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@nuxtjs/color-mode",
"version": "3.4.1",
"version": "3.4.2",
"description": "Dark and Light mode for Nuxt with auto detection",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/color-mode.git"
},
"license": "MIT",
"packageManager": "pnpm@9.0.6",
"packageManager": "pnpm@9.4.0",
"contributors": [
{
"name": "Nuxt Team"
@@ -38,27 +38,28 @@
"test": "vitest run --coverage"
},
"dependencies": {
"@nuxt/kit": "^3.11.2",
"@nuxt/kit": "^3.12.2",
"pathe": "^1.1.2",
"pkg-types": "^1.1.0",
"semver": "^7.6.0"
"pkg-types": "^1.1.1",
"semver": "^7.6.2"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@nuxt/eslint-config": "^0.3.10",
"@nuxt/module-builder": "^0.6.0",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.12.1",
"@nuxt/eslint-config": "^0.3.13",
"@nuxt/module-builder": "^0.8.0",
"@nuxt/schema": "^3.12.2",
"@nuxt/test-utils": "^3.13.1",
"@types/lodash.template": "^4.5.3",
"@typescript-eslint/parser": "^7.7.1",
"@vitest/coverage-v8": "^1.5.2",
"eslint": "^9.1.1",
"@types/semver": "^7.5.8",
"@typescript-eslint/parser": "^7.14.1",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.5.0",
"husky": "9.0.11",
"nuxt": "^3.11.2",
"nuxt": "^3.12.2",
"standard-version": "^9.5.0",
"typescript": "^5.4.5",
"vitest": "^1.5.2",
"vue-tsc": "^2.0.14"
"typescript": "^5.5.2",
"vitest": "^1.6.0",
"vue-tsc": "^2.0.22"
}
}
2 changes: 1 addition & 1 deletion playground/package.json
Original file line number Diff line number Diff line change
@@ -4,6 +4,6 @@
"dependencies": {
"@nuxtjs/color-mode": "latest",
"@nuxtjs/tailwindcss": "^6.12.0",
"nuxt": "^3.11.2"
"nuxt": "^3.12.2"
}
}
Loading