feat: support plugin path for clientConfig and serverConfig#477
Merged
Conversation
Codecov Report
@@ Coverage Diff @@
## main #477 +/- ##
=======================================
Coverage 69.23% 69.23%
=======================================
Files 1 1
Lines 52 52
Branches 21 21
=======================================
Hits 36 36
Misses 13 13
Partials 3 3 Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
rchl
added a commit
that referenced
this pull request
Dec 21, 2022
* fix/tree-shake: feat: enable tree shaking of Sentry SDK debug code chore(lint): enable linting for more files within the repo chore(deps): update lock file fix(deps): update sentry dependencies to ^7.28.0 (#478) docs: minor updates about dependencies and lazy+tracing feat: support plugin path for clientConfig and serverConfig (#477) feat(tracing): enable Vue Router instrumentation by default (#476) Revert "feat(tracing): enable Vue Router instrumentation by default" feat(tracing): enable Vue Router instrumentation by default chore(lint): tweak eslint ignore directives for generated plugin files chore(deps): update devdependency sentry-testkit to v5 chore(deps): update devdependency @nuxtjs/eslint-config-typescript to v12 chore(deps): update sentry dependencies to ^7.27.0 (#474) feat!: update Sentry SDK from v6 to v7 (#461) docs: add information about enriching events (#473) fix: gracefully handle Nuxt versions without Runtime Config (#472)
rchl
added a commit
to rtibaldo/sentry-module
that referenced
this pull request
Jan 19, 2023
…module-builder-original * rtibaldo-rewrite-module-builder: (39 commits) migrate to module-builder chore: release 7.0.2 fix(deps): update sentry dependencies to ^7.29.0 (nuxt-community#482) chore(deps): update all non-major dependencies fix: not able to resolve un-hoisted client-side dependencies (nuxt-community#486) chore: release 7.0.1 fix: more accurate type for `serverConfig` option (nuxt-community#484) chore: remove dead badge from the readme chore(docs): build documentation on every change chore: release 7.0.0 feat: enable tree shaking of Sentry SDK debug code (nuxt-community#481) chore(lint): enable linting for more files within the repo chore(deps): update lock file fix(deps): update sentry dependencies to ^7.28.0 (nuxt-community#478) docs: minor updates about dependencies and lazy+tracing feat: support plugin path for clientConfig and serverConfig (nuxt-community#477) feat(tracing): enable Vue Router instrumentation by default (nuxt-community#476) Revert "feat(tracing): enable Vue Router instrumentation by default" feat(tracing): enable Vue Router instrumentation by default chore(lint): tweak eslint ignore directives for generated plugin files ...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds support for passing a path to a plugin (file that exports a function) for
clientConfigandserverConfigoptions. Allows to configure options that would otherwise be impossible to handle due to serialization of options that Nuxt requires.Resolves #385
Resolves #410
Resolves #343
Resolves #226