@lupinum/nuxt-email 1.0.0-beta.2 → 1.0.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.0.0-beta.3
4
+
5
+ [compare changes](https://github.com/lupinum-dev/nuxt-email/compare/v1.0.0-beta.2...v1.0.0-beta.3)
6
+
7
+ ### 🩹 Fixes
8
+
9
+ - **deps:** Enforce expiring quarantine exceptions ([#47](https://github.com/lupinum-dev/nuxt-email/pull/47))
10
+ - **preview:** Bundle configured renderer during development ([#48](https://github.com/lupinum-dev/nuxt-email/pull/48))
11
+ - **compatibility:** Prove supported Nuxt and Vue ranges ([#50](https://github.com/lupinum-dev/nuxt-email/pull/50))
12
+
13
+ ### 🏡 Chore
14
+
15
+ - **maintenance:** Verify Email commands without repeated CI work ([#49](https://github.com/lupinum-dev/nuxt-email/pull/49))
16
+
17
+ ### ❤️ Contributors
18
+
19
+ - Matthias Amon
20
+
3
21
  ## v1.0.0-beta.2
4
22
 
5
23
  ### Added
@@ -109,6 +127,6 @@ Status: pre-1.0 candidate. The package identity is `@lupinum/nuxt-email`; the un
109
127
 
110
128
  - Node.js `^22.18.0 || ^24.11.0 || ^26.0.0`.
111
129
  - Nuxt `>=4.5.1 <5`.
112
- - Vue `^3.5.35`.
130
+ - Vue `^3.5.40`.
113
131
 
114
132
  The repository's v1.0 readiness gate records the current contract and remaining approval steps; the live release ledger is intentionally excluded from the npm tarball.
package/README.md CHANGED
@@ -43,9 +43,9 @@ Do not use it for marketing campaigns or a workflow shared by non-Nuxt applicati
43
43
 
44
44
  - Node.js `^22.18.0 || ^24.11.0 || ^26.0.0`.
45
45
  - Nuxt `>=4.5.1 <5`.
46
- - Vue `^3.5.35`.
46
+ - Vue `^3.5.40`.
47
47
 
48
- CI tests every supported Node major. The release consumer installs Nuxt `4.5.2` without a dependency shim.
48
+ CI tests every supported Node major. Release consumers verify the declared minimum and current Nuxt 4 and Vue 3 versions without a dependency shim.
49
49
 
50
50
  ## Installation
51
51
 
package/dist/module.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "compatibility": {
5
5
  "nuxt": ">=4.5.1 <5"
6
6
  },
7
- "version": "1.0.0-beta.2",
7
+ "version": "1.0.0-beta.3",
8
8
  "builder": {
9
9
  "@nuxt/module-builder": "1.0.2",
10
10
  "unbuild": "unknown"
package/dist/module.mjs CHANGED
@@ -191,9 +191,9 @@ const module$1 = defineNuxtModule({
191
191
  alias["@lupinum/nuxt-email/errors"] = errorsPublicPath;
192
192
  const externals = nitro.externals ??= {};
193
193
  const inline = externals.inline ??= [];
194
- for (const publicRuntimePath of [defineEmailPublicPath, errorsPublicPath]) {
195
- if (!inline.includes(publicRuntimePath)) {
196
- inline.push(publicRuntimePath);
194
+ for (const runtimePath of [defineEmailPublicPath, errorsPublicPath, testingRendererPath]) {
195
+ if (!inline.includes(runtimePath)) {
196
+ inline.push(runtimePath);
197
197
  }
198
198
  }
199
199
  const typescript = nitro.typescript ??= {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lupinum/nuxt-email",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.3",
4
4
  "description": "Typed transactional email for Nuxt with email-safe Tailwind v4",
5
5
  "keywords": [
6
6
  "email",
@@ -61,7 +61,7 @@
61
61
  ],
62
62
  "peerDependencies": {
63
63
  "nuxt": ">=4.5.1 <5",
64
- "vue": "^3.5.35"
64
+ "vue": "^3.5.40"
65
65
  },
66
66
  "dependencies": {
67
67
  "@nuxt/kit": ">=4.5.1 <5",
@@ -120,15 +120,18 @@
120
120
  "proofs:generate": "node --import tsx scripts/proofs/generate.ts",
121
121
  "proofs:send": "node --import tsx scripts/proofs/send.ts",
122
122
  "repo:check": "node scripts/check-repository-policy.mjs",
123
- "release:verify": "pnpm verify && node --import tsx scripts/verify-release.ts",
123
+ "release:verify": "pnpm verify && pnpm release:pack",
124
124
  "release:prepare": "changelogen --bump --clean --hideAuthorEmail",
125
125
  "release:artifact": "pnpm release:verify --output .release/lupinum-nuxt-email.tgz && node scripts/write-release-manifest.mjs",
126
126
  "lint": "eslint .",
127
- "test": "pnpm prepack && vitest run --exclude test/preview.test.ts && pnpm test:preview",
127
+ "test": "pnpm prepack && vitest run --exclude test/preview.test.ts --reporter=default --reporter=./test/conformance/tooling/reporter.ts && pnpm test:preview",
128
128
  "test:preview": "vitest run test/preview.test.ts",
129
129
  "test:conformance": "vitest run test/conformance",
130
130
  "test:watch": "vitest watch",
131
131
  "test:types": "pnpm dev:prepare && nuxt prepare test/fixtures/basic && nuxt prepare test/fixtures/code-block && nuxt prepare test/fixtures/preview && vue-tsc --noEmit && vue-tsc --noEmit -p test/fixtures/basic/.nuxt/tsconfig.server.json && vue-tsc --noEmit -p test/fixtures/code-block/.nuxt/tsconfig.server.json && vue-tsc --noEmit -p test/fixtures/preview/.nuxt/tsconfig.server.json && cd playground && vue-tsc --noEmit",
132
- "verify": "pnpm audit:all && pnpm repo:check && pnpm lint && pnpm test:types && pnpm test && pnpm conformance:check && pnpm docs:build"
132
+ "verify": "pnpm check:dependencies && pnpm audit:all && pnpm repo:check && pnpm lint && pnpm test:types && pnpm test && pnpm docs:build",
133
+ "check:dependencies": "node scripts/check-dependency-policy.mjs",
134
+ "build": "nuxt-module-build build",
135
+ "release:pack": "node --import tsx scripts/verify-release.ts"
133
136
  }
134
137
  }