nuxt-auth-sanctum
nuxt-auth-sanctum copied to clipboard
chore(deps-dev): bump @nuxt/module-builder from 0.8.4 to 1.0.1
Bumps @nuxt/module-builder from 0.8.4 to 1.0.1.
Release notes
Sourced from @nuxt/module-builder's releases.
v1.0.1
📖 Documentation
❤️ Contributors
- Daniel Roe (
@danielroe)- Connor Pearson (
@cjpearson)v1.0.0
With the release of unbuild v3, the EOL status of Nuxt 2, and looking forward to Nuxt 4, we're taking the opportunity to release v1 of
@nuxt/module-builder, with a range of breaking changes.⚠️ Breaking Changes
Upgrade to unbuild v3 (#447) This major upgrade brings significant changes to the build proces but should be significantly better.
Removal of Node10 module resolution and CommonJS output (#448) As Nuxt 2 has reached EOL, we no longer generate CJS by default, and we have also removed the 'CJS bridge' feature that polyfilled
__filenameand__dirname.Type errors. The module builder will now error if there are type errors when generating your
runtime/*files. (Previously warnings were logged but your build would have succeeded.) Errors you receive aren't caused by the upgrade, but you might need to correct any issues before your module will build again.🚧 Migration Guide
Replacing
__filenameand__dirnameWe no longer polyfill these CommonJS variables. Instead, use the
createResolverutility from@nuxt/kit:import { createResolver } from '@nuxt/kit'// Instead of __dirname and __filename
const resolver= createResolver(import.meta.url)
const runtimeDir = resolver.resolve('./runtime')
Module Resolution Changes
We no longer officially support Node10 module resolution, meaning you should remove the
types/typefield from yourpackage.json. If you need to maintain compatibility with older Node.js versions or systems expecting CommonJS, you can use thetypesVersionsfield in yourpackage.json.This field allows typing subpath exports (like
my-module/utils) even with oldermoduleResolutionsettings. Regardless, we recommend all Nuxt users to useBundlermodule resolution.{ "typesVersions": { "*": { </tr></table>
... (truncated)
Changelog
Sourced from @nuxt/module-builder's changelog.
v1.0.1
📖 Documentation
❤️ Contributors
- Daniel Roe (
@danielroe)- Connor Pearson (
@cjpearson)v1.0.0
🚀 Enhancements
- ⚠️ Upgrade to unbuild v3 (#447)
- ⚠️ Remove support for node10 resolution + cjs (#448)
- build: Ignore test + story files in runtime/ directory (#480)
- Add support for type exports in module re-exports (#563)
🩹 Fixes
- Mark nuxi as optional peerDep (29a42ae)
- Drop
@nuxt/kitpeer dependency & remove optionality for nuxi (5936063)- build: Handle windows path names (#399)
- build: Apply resolved tsconfig to dts (#462)
- Handle node10 resolution + add attw test (7309198)
- Update warnings (6291cbe)
- Support more than one line of type exports (0c0020f)
- Split re-exports across multiple lines (7154a89)
- Support star exports (8966047)
📖 Documentation
- Update example build script (#359)
- Update link to downloads count badge (9804e9e)(b9b27c3)
- Describe configuring unbuild (#440)
🏡 Chore
... (truncated)
Commits
7a43cbfchore(release): v1.0.1c0cac22chore(deps): update dependency vue-sfc-transformer to ^0.1.8 (#590)3771544chore(deps): update pnpm to v10.8.0 (#589)2d3dacachore(deps): lock file maintenance (#586)36eebcdchore(deps): update dependency vue-sfc-transformer to ^0.1.5 (#585)3dc71f9chore(deps): update devdependency knip to ^5.47.0 (#584)6b30cdedocs: update to latest recommendations48e98e5docs: add full v1 release notes (#581) (#582)aac840dchore(deps): update resolutions typescript to v5.8.3 (#579)b0655d3chore(release): v1.0.0- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)