Skip to content

Commit

Permalink
fix: Fix 'identifiy' typo in log messages (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
chunfeilung committed Jul 7, 2023
1 parent 9cafe76 commit 0c45c98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bundler-plugin-core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export function sentryUnpluginFactory({
);
} else if (!options.release.name) {
logger.warn(
"No release name provided. Will not inject release. Please set the `release.name` option to identifiy your release."
"No release name provided. Will not inject release. Please set the `release.name` option to identify your release."
);
} else {
const injectionCode = generateGlobalInjectorCode({
Expand Down Expand Up @@ -199,7 +199,7 @@ export function sentryUnpluginFactory({

if (!options.release.name) {
logger.warn(
"No release name provided. Will not create release. Please set the `release.name` option to identifiy your release."
"No release name provided. Will not create release. Please set the `release.name` option to identify your release."
);
} else if (!options.authToken) {
logger.warn(
Expand Down

0 comments on commit 0c45c98

Please sign in to comment.