Mail Web is a Laravel package which catches emails locally for debugging

Related tags

Email mail-web
Overview

Mail Web is a Laravel package which catches emails locally for debugging

StyleCI Status Total Downloads Latest Stable Version License

Installation

Use the package manager composer to install Mail Web.

composer require appoly/mail-web

Usage

Run the migration

php artisan migrate

Publish the assets to your project using

php artisan vendor:publish --tag=mailweb-public --force

Publish the config to your project using

php artisan vendor:publish --tag=mailweb-config --force

Add MailSending to your EventServiceProvider.php

use Appoly\MailWeb\Http\Listeners\MailWebListener;
use Illuminate\Mail\Events\MessageSending;

class EventServiceProvider extends ServiceProvider
{
    /**
     * The event listener mappings for the application.
     *
     * @var array
     */
    protected $listen = [
        MessageSending::class => [
            MailWebListener::class
        ]
    ];

To use Mail Web you need to add a Gate to your AuthServiceProvider. If you would like to limit the users that can access the route then use

public function boot()
{
  Gate::define("view-mailweb", function ($user) {
      return in_array($user->email, [
          '[email protected]',
      ]);
  });
}

Should you want to allow access to all users then change the above code to

Gate::define("view-mailweb", function ($user) {
    return true;
});

To view emails then go to

{url}\mailweb

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

License

MIT

Comments
  • CI Generator

    CI Generator

    This pull request includes configuration for running lint, code style checks, and tests within your CI environment. Feel free to commit any additional changes to the shift-62864 branch.

    Before merging, you need to:

    • Review all pull request comments for additional changes
    • Ensure your CI build is running successfully
    opened by CalumChamberlain 7
  • Bump tailwindcss from 1.9.6 to 2.2.6

    Bump tailwindcss from 1.9.6 to 2.2.6

    Bumps tailwindcss from 1.9.6 to 2.2.6.

    Release notes

    Sourced from tailwindcss's releases.

    v2.2.6

    Fixed

    • Fix issue where base styles not generated for translate transforms in JIT (#5038)

    v2.2.5

    Added

    • Added self-baseline utility (I know this is a patch release, no one's going to die relax) (#5000)

    Changed

    • JIT: Optimize universal selector usage by inlining only the relevant selectors (#4850))

      This provides a very significant performance boost on pages with a huge number of DOM nodes, but there's a chance it could be a breaking change in very rare edge cases we haven't thought of. Please open an issue if anything related to shadows, rings, transforms, filters, or backdrop-filters seems to be behaving differently after upgrading.

    Fixed

    • Fix support for step-start and step-end in animation utilities (#4795))
    • JIT: Prevent presence of !* in templates from ruining everything (#4816))
    • JIT: Improve support for quotes in arbitrary values (#4817))
    • Fix filter/backdrop-filter/transform utilities being inserted into the wrong position if not all core plugins are enabled (#4852))
    • JIT: Fix @layer rules being mistakenly inserted during incremental rebuilds (#4853))
    • Improve build performance for projects with many small non-Tailwind stylesheets (#4644)
    • Ensure [hidden] works as expected on elements where we override the default display value in Preflight (#4873)
    • Fix variant configuration not being applied to backdropOpacity utilities (#4892)

    v2.2.4

    Fixed

    • Remove postinstall script that was preventing people from installing the library (1eacfb9)

    v2.2.3

    Added

    • Pass extended color palette to theme closures so it can be used without installing Tailwind when using npx tailwindcss (359252c)

    Fixed

    • JIT: Explicitly error when - is used as a custom separator (#4704)
    • JIT: Don't add multiple ~ when stacking peer-* variants (#4757)
    • Remove outdated focus style fix in Preflight (#4780)
    • Enable purge if provided on the CLI (#4772)
    • JIT: Fix error when not using a config file with postcss-cli (#4773)
    • Fix issue with resolveConfig not being importable in Next.js pags (#4725)

    v2.2.2

    Fixed

    • JIT: Reintroduce transform, filter, and backdrop-filter classes purely to create stacking contexts to minimize the impact of the breaking change (#4700)

    ... (truncated)

    Changelog

    Sourced from tailwindcss's changelog.

    [2.2.6] - 2021-07-21

    Fixed

    • Fix issue where base styles not generated for translate transforms in JIT (#5038)

    [2.2.5] - 2021-07-21

    Added

    • Added self-baseline utility (I know this is a patch release, no one's going to die relax) (#5000)

    Changed

    • JIT: Optimize universal selector usage by inlining only the relevant selectors (#4850))

      This provides a very significant performance boost on pages with a huge number of DOM nodes, but there's a chance it could be a breaking change in very rare edge cases we haven't thought of. Please open an issue if anything related to shadows, rings, transforms, filters, or backdrop-filters seems to be behaving differently after upgrading.

    Fixed

    • Fix support for step-start and step-end in animation utilities (#4795))
    • JIT: Prevent presence of !* in templates from ruining everything (#4816))
    • JIT: Improve support for quotes in arbitrary values (#4817))
    • Fix filter/backdrop-filter/transform utilities being inserted into the wrong position if not all core plugins are enabled (#4852))
    • JIT: Fix @layer rules being mistakenly inserted during incremental rebuilds (#4853))
    • Improve build performance for projects with many small non-Tailwind stylesheets (#4644)
    • Ensure [hidden] works as expected on elements where we override the default display value in Preflight (#4873)
    • Fix variant configuration not being applied to backdropOpacity utilities (#4892)

    [2.2.4] - 2021-06-23

    Fixed

    • Remove postinstall script that was preventing people from installing the library (1eacfb9)

    [2.2.3] - 2021-06-23

    Added

    • Pass extended color palette to theme closures so it can be used without installing Tailwind when using npx tailwindcss (359252c)

    Fixed

    • JIT: Explicitly error when - is used as a custom separator (#4704)
    • JIT: Don't add multiple ~ when stacking peer-* variants (#4757)
    • Remove outdated focus style fix in Preflight (#4780)
    • Enable purge if provided on the CLI (#4772)
    • JIT: Fix error when not using a config file with postcss-cli (#4773)
    • Fix issue with resolveConfig not being importable in Next.js pags (#4725)

    ... (truncated)

    Commits

    Dependabot compatibility score

    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.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies javascript 
    opened by dependabot-preview[bot] 2
  • Bump tailwindcss from 1.9.6 to 2.2.4

    Bump tailwindcss from 1.9.6 to 2.2.4

    Bumps tailwindcss from 1.9.6 to 2.2.4.

    Release notes

    Sourced from tailwindcss's releases.

    v2.2.4

    Fixed

    • Remove postinstall script that was preventing people from installing the library (1eacfb9)

    v2.2.3

    Added

    • Pass extended color palette to theme closures so it can be used without installing Tailwind when using npx tailwindcss (359252c)

    Fixed

    • JIT: Explicitly error when - is used as a custom separator (#4704)
    • JIT: Don't add multiple ~ when stacking peer-* variants (#4757)
    • Remove outdated focus style fix in Preflight (#4780)
    • Enable purge if provided on the CLI (#4772)
    • JIT: Fix error when not using a config file with postcss-cli (#4773)
    • Fix issue with resolveConfig not being importable in Next.js pags (#4725)

    v2.2.2

    Fixed

    • JIT: Reintroduce transform, filter, and backdrop-filter classes purely to create stacking contexts to minimize the impact of the breaking change (#4700)

    v2.2.1

    Fixed

    • Recover from errors gracefully in CLI watch mode (#4693)
    • Fix issue with media queries not being generated properly when using PostCSS 7 (#4695)

    v2.2.0

    Tailwind CSS v2.2.0

    Six weeks ago I didn't even have v2.2 on my roadmap and yet somehow here we are today, with one of the biggest Tailwind CSS feature releases of all-time?!

    This release is loaded with tons of cool new stuff, mostly targeting the new Just-in-Time mode which unlocks so many cool ideas we probably couldn't have pulled off if we had to keep being mindful of the CSS file size in development.

    To upgrade, install the latest version via npm:

    npm install -D tailwindcss@latest
    

    Note that we've had to make a couple small changes to the JIT engine as we've added features, fixed bugs, and improved the overall reliability, so make sure to read about the changes and deprecations when upgrading if you are using just-in-time mode.

    ... (truncated)

    Changelog

    Sourced from tailwindcss's changelog.

    [2.2.4] - 2021-06-23

    Fixed

    • Remove postinstall script that was preventing people from installing the library (1eacfb9)

    [2.2.3] - 2021-06-23

    Added

    • Pass extended color palette to theme closures so it can be used without installing Tailwind when using npx tailwindcss (359252c)

    Fixed

    • JIT: Explicitly error when - is used as a custom separator (#4704)
    • JIT: Don't add multiple ~ when stacking peer-* variants (#4757)
    • Remove outdated focus style fix in Preflight (#4780)
    • Enable purge if provided on the CLI (#4772)
    • JIT: Fix error when not using a config file with postcss-cli (#4773)
    • Fix issue with resolveConfig not being importable in Next.js pags (#4725)

    [2.2.2] - 2021-06-18

    Fixed

    • JIT: Reintroduce transform, filter, and backdrop-filter classes purely to create stacking contexts to minimize the impact of the breaking change (#4700)

    [2.2.1] - 2021-06-18

    Fixed

    • Recover from errors gracefully in CLI watch mode (#4693)
    • Fix issue with media queries not being generated properly when using PostCSS 7 (#4695)

    [2.2.0] - 2021-06-17

    Changed

    • JIT: Use "tracking" context by default instead of "watching" context for improved reliability with most bundlers (#4514)

      Depending on which tooling you use, you may need to explicitly set TAILWIND_MODE=watch until your build runner has been updated to support PostCSS's dir-dependency message type.

    Added

    • Add background-origin utilities (#4117)
    • Improve @apply performance in projects that process many CSS sources (#3178)
    • JIT: Don't use CSS variables for color utilities if color opacity utilities are disabled (#3984)
    • JIT: Redesign matchUtilities API to make it more suitable for third-party use (#4232)
    • JIT: Support applying important utility variants (#4260)
    • JIT: Support coercing arbitrary values when the type isn't detectable (#4263)

    ... (truncated)

    Commits

    Dependabot compatibility score

    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.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies javascript 
    opened by dependabot-preview[bot] 2
  • Bump tailwindcss from 1.9.6 to 2.2.2

    Bump tailwindcss from 1.9.6 to 2.2.2

    Bumps tailwindcss from 1.9.6 to 2.2.2.

    Release notes

    Sourced from tailwindcss's releases.

    v2.2.2

    Fixed

    • JIT: Reintroduce transform, filter, and backdrop-filter classes purely to create stacking contexts to minimize the impact of the breaking change (#4700)

    v2.2.1

    Fixed

    • Recover from errors gracefully in CLI watch mode (#4693)
    • Fix issue with media queries not being generated properly when using PostCSS 7 (#4695)

    v2.2.0

    Tailwind CSS v2.2.0

    Six weeks ago I didn't even have v2.2 on my roadmap and yet somehow here we are today, with one of the biggest Tailwind CSS feature releases of all-time?!

    This release is loaded with tons of cool new stuff, mostly targeting the new Just-in-Time mode which unlocks so many cool ideas we probably couldn't have pulled off if we had to keep being mindful of the CSS file size in development.

    To upgrade, install the latest version via npm:

    npm install -D tailwindcss@latest
    

    Note that we've had to make a couple small changes to the JIT engine as we've added features, fixed bugs, and improved the overall reliability, so make sure to read about the changes and deprecations when upgrading if you are using just-in-time mode.


    ... (truncated)

    Changelog

    Sourced from tailwindcss's changelog.

    [2.2.2] - 2021-06-18

    Fixed

    • JIT: Reintroduce transform, filter, and backdrop-filter classes purely to create stacking contexts to minimize the impact of the breaking change (#4700)

    [2.2.1] - 2021-06-18

    Fixed

    • Recover from errors gracefully in CLI watch mode (#4693)
    • Fix issue with media queries not being generated properly when using PostCSS 7 (#4695)

    [2.2.0] - 2021-06-17

    Changed

    • JIT: Use "tracking" context by default instead of "watching" context for improved reliability with most bundlers (#4514)

      Depending on which tooling you use, you may need to explicitly set TAILWIND_MODE=watch until your build runner has been updated to support PostCSS's dir-dependency message type.

    Added

    • Add background-origin utilities (#4117)
    • Improve @apply performance in projects that process many CSS sources (#3178)
    • JIT: Don't use CSS variables for color utilities if color opacity utilities are disabled (#3984)
    • JIT: Redesign matchUtilities API to make it more suitable for third-party use (#4232)
    • JIT: Support applying important utility variants (#4260)
    • JIT: Support coercing arbitrary values when the type isn't detectable (#4263)
    • JIT: Support for raw syntax in purge config (#4272)
    • Add empty variant (#3298)
    • Update modern-normalize to v1.1 (#4287)
    • Implement theme function internally, remove postcss-functions dependency (#4317)
    • Add screen function to improve nesting plugin compatibility (#4318)
    • JIT: Add universal shorthand color opacity syntax (#4348)
    • JIT: Add @tailwind variants directive to replace @tailwind screens (#4356)
    • JIT: Add support for PostCSS dir-dependency messages in TAILWIND_DISABLE_TOUCH mode (#4388)
    • JIT: Add per-side border color utilities (#4404)
    • JIT: Add support for before and after pseudo-element variants and content utilities (#4461)
    • Add new transform and extract APIs to simplify PurgeCSS/JIT customization (#4469)
    • JIT: Add exhaustive pseudo-class and pseudo-element variant support (#4482)
    • JIT: Add caret-color utilities (#4499)
    • Rename lightBlue to sky, emit console warning when using deprecated name (#4513)
    • New CLI with improved JIT support, --watch mode, and more (#4526, 4558)
    • JIT: Add new peer-* variants for styling based on sibling state (#4556)
    • Expose safelist as a top-level option under purge for both JIT and classic engines (#4580)
    • JIT: Remove need for transform class when using classes like scale-*, rotate-*, etc. (#4604)
    • JIT: Remove need for filter and backdrop-filter classes when using classes like contrast-*, backdrop-blur-*, etc. (#4614)
    • Support passing a custom path for your PostCSS configuration in the Tailwind CLI (#4607)
    • Add blur-none by default with intent to deprecate blur-0 (#4614)

    ... (truncated)

    Commits

    Dependabot compatibility score

    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.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies javascript 
    opened by dependabot-preview[bot] 2
  • Bump tailwindcss from 1.9.6 to 2.2.0

    Bump tailwindcss from 1.9.6 to 2.2.0

    Bumps tailwindcss from 1.9.6 to 2.2.0.

    Release notes

    Sourced from tailwindcss's releases.

    v2.2.0

    Tailwind CSS v2.2.0

    Six weeks ago I didn't even have v2.2 on my roadmap and yet somehow here we are today, with one of the biggest Tailwind CSS feature releases of all-time?!

    This release is loaded with tons of cool new stuff, mostly targeting the new Just-in-Time mode which unlocks so many cool ideas we probably couldn't have pulled off if we had to keep being mindful of the CSS file size in development.

    To upgrade, install the latest version via npm:

    npm install -D tailwindcss@latest
    

    Note that we've had to make a couple small changes to the JIT engine as we've added features, fixed bugs, and improved the overall reliability, so make sure to read about the changes and deprecations when upgrading if you are using just-in-time mode.


    New features

    All-new improved Tailwind CLI (#4526, #4558)

    We've rewritten the Tailwind CLI tool from the ground-up with a performance-first mindset, while also adding support for a bunch of new features.

    npx tailwindcss -o dist/tailwind.css --watch --jit --purge="./src/**/*.html"
    </tr></table> 
    

    ... (truncated)

    Changelog

    Sourced from tailwindcss's changelog.

    [2.2.0] - 2021-06-17

    Changed

    • JIT: Use "tracking" context by default instead of "watching" context for improved reliability with most bundlers (#4514)

      Depending on which tooling you use, you may need to explicitly set TAILWIND_MODE=watch until your build runner has been updated to support PostCSS's dir-dependency message type.

    Added

    • Add background-origin utilities (#4117)
    • Improve @apply performance in projects that process many CSS sources (#3178)
    • JIT: Don't use CSS variables for color utilities if color opacity utilities are disabled (#3984)
    • JIT: Redesign matchUtilities API to make it more suitable for third-party use (#4232)
    • JIT: Support applying important utility variants (#4260)
    • JIT: Support coercing arbitrary values when the type isn't detectable (#4263)
    • JIT: Support for raw syntax in purge config (#4272)
    • Add empty variant (#3298)
    • Update modern-normalize to v1.1 (#4287)
    • Implement theme function internally, remove postcss-functions dependency (#4317)
    • Add screen function to improve nesting plugin compatibility (#4318)
    • JIT: Add universal shorthand color opacity syntax (#4348)
    • JIT: Add @tailwind variants directive to replace @tailwind screens (#4356)
    • JIT: Add support for PostCSS dir-dependency messages in TAILWIND_DISABLE_TOUCH mode (#4388)
    • JIT: Add per-side border color utilities (#4404)
    • JIT: Add support for before and after pseudo-element variants and content utilities (#4461)
    • Add new transform and extract APIs to simplify PurgeCSS/JIT customization (#4469)
    • JIT: Add exhaustive pseudo-class and pseudo-element variant support (#4482)
    • JIT: Add caret-color utilities (#4499)
    • Rename lightBlue to sky, emit console warning when using deprecated name (#4513)
    • New CLI with improved JIT support, --watch mode, and more (#4526, 4558)
    • JIT: Add new peer-* variants for styling based on sibling state (#4556)
    • Expose safelist as a top-level option under purge for both JIT and classic engines (#4580)
    • JIT: Remove need for transform class when using classes like scale-*, rotate-*, etc. (#4604)
    • JIT: Remove need for filter and backdrop-filter classes when using classes like contrast-*, backdrop-blur-*, etc. (#4614)
    • Support passing a custom path for your PostCSS configuration in the Tailwind CLI (#4607)
    • Add blur-none by default with intent to deprecate blur-0 (#4614)

    Fixed

    • JIT: Improve support for Svelte class bindings (#4187)
    • JIT: Improve support for calc and var in arbitrary values (#4147)
    • Convert hsl colors to hsla when transforming for opacity support instead of rgba (#3850)
    • Fix backdropBlur variants not being generated (#4188)
    • Improve animation value parsing (#4250)
    • Ignore unknown object types when hashing config (82f4eaa)
    • Ensure variants are grouped properly for plugins with order-dependent utilities (#4273)
    • JIT: Fix temp file storage when node temp directories are kept on a different drive than the project itself (#4044)
    • Support border-opacity utilities alongside default border utility (#4277)
    • JIT: Fix source maps for expanded @tailwind directives (2f15411)

    ... (truncated)

    Commits

    Dependabot compatibility score

    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.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies javascript 
    opened by dependabot-preview[bot] 2
  • Bump tailwindcss from 1.9.6 to 2.1.4

    Bump tailwindcss from 1.9.6 to 2.1.4

    Bumps tailwindcss from 1.9.6 to 2.1.4.

    Release notes

    Sourced from tailwindcss's releases.

    v2.1.4

    Fixed

    • Skip raw PurgeCSS sources when registering template dependencies (#4542)

    v2.1.3

    Fixed

    • Register PurgeCSS paths as PostCSS dependencies to guarantee proper cache-busting in webpack 5 (#4530)

    v2.1.2

    Fixed

    • Fix issue where JIT engine would generate the wrong CSS when using PostCSS 7 (#4078)

    v2.1.1

    Fixed

    • Fix issue where JIT engine would fail to compile when a source path isn't provided by the build runner for the current input file (#3978)

    v2.1.0

    Tailwind CSS v2.1.0

    The first new feature update since Tailwind CSS v2.0 is here and loaded with lots of cool stuff!

    New features

    JIT engine in core (#3905)

    The brand-new JIT engine we announced in March has now been merged into core, and is available as an opt-in feature using a new mode option in your tailwind.config.js file:

    // tailwind.config.js
    module.exports = {
      mode: 'jit',
      purge: [
        // ...
      ],
    </tr></table> 
    

    ... (truncated)

    Changelog

    Sourced from tailwindcss's changelog.

    [2.1.4] - 2021-06-02

    Fixed

    • Skip raw PurgeCSS sources when registering template dependencies (#4542)

    [2.1.3] - 2021-06-01

    Fixed

    • Register PurgeCSS paths as PostCSS dependencies to guarantee proper cache-busting in webpack 5 (#4530)

    [2.1.2] - 2021-04-23

    Fixed

    • Fix issue where JIT engine would generate the wrong CSS when using PostCSS 7 (#4078)

    [2.1.1] - 2021-04-05

    Fixed

    • Fix issue where JIT engine would fail to compile when a source path isn't provided by the build runner for the current input file (#3978)

    [2.1.0] - 2021-04-05

    Added

    • Add alternate JIT engine (in preview) (#3905)
    • Add new mix-blend-mode and background-blend-mode utilities (#3920)
    • Add new box-decoration-break utilities (#3911)
    • Add new isolation utilities (#3914)
    • Add inline-table display utility (#3563)
    • Add list-item display utility (#3929)
    • Add new filter and backdrop-filter utilities (#3923)

    [2.0.4] - 2021-03-17

    Fixed

    • Pass full var(--bg-opacity) value as opacityValue when defining colors as functions

    [2.0.3] - 2021-02-07

    Fixed

    • Ensure sourcemap input is deterministic when using @apply in Vue components (#3356)
    • Ensure placeholder opacity is consistent across browsers (#3308)
    • Fix issue where theme() didn't work with colors defined as functions (#2919)
    • Enable dark variants by default for color opacity utilities (#2975)

    ... (truncated)

    Commits

    Dependabot compatibility score

    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.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies javascript 
    opened by dependabot-preview[bot] 2
  • Bump sass-loader from 10.2.0 to 12.0.0

    Bump sass-loader from 10.2.0 to 12.0.0

    Bumps sass-loader from 10.2.0 to 12.0.0.

    Release notes

    Sourced from sass-loader's releases.

    v12.0.0

    12.0.0 (2021-06-01)

    ⚠ BREAKING CHANGES

    • minimum supported Node.js version is 12.13.0

    Bug Fixes

    • crash in custom importers with worker threads (#958) (67aa139)
    • resolving _index.import.scss/index.import.scss in packages (#906) (6641a16)

    v11.1.1

    11.1.1 (2021-05-13)

    Bug Fixes

    • disabled auto importing fiber on node >= 16 due incompatibility problems (#950) (4ca004b)

    v11.1.0

    11.1.0 (2021-05-10)

    Features

    v11.0.1

    11.0.1 (2021-02-08)

    Bug Fixes

    • compatibility with custom importers for node-sass (#927) (af5a072)

    v11.0.0

    Notes

    • using ~ is deprecated and can be removed from your code (we recommend it), but we still support it for historical reasons.

    Why you can removed it? The loader will first try to resolve @import/@use as relative, if it cannot be resolved, the loader will try to resolve @import/@use inside node_modules. Using ~ means looking for files in node_modules or resolve.alias or resolve.fallback.

    ⚠ BREAKING CHANGES

    • minimum supported webpack version is 5

    ... (truncated)

    Changelog

    Sourced from sass-loader's changelog.

    12.0.0 (2021-06-01)

    ⚠ BREAKING CHANGES

    • minimum supported Node.js version is 12.13.0

    Bug Fixes

    • crash in custom importers with worker threads (#958) (67aa139)
    • resolving _index.import.scss/index.import.scss in packages (#906) (6641a16)

    11.1.1 (2021-05-13)

    Bug Fixes

    • disabled auto importing fiber on node >= 16 due incompatibility problems (#950) (4ca004b)

    11.1.0 (2021-05-10)

    Features

    11.0.1 (2021-02-08)

    Bug Fixes

    • compatibility with custom importers for node-sass (#927) (af5a072)

    11.0.0 (2021-02-05)

    Notes

    • using ~ is deprecated and can be removed from your code (we recommend it), but we still support it for historical reasons.

    Why you can removed it? The loader will first try to resolve @import/@use as relative, if it cannot be resolved, the loader will try to resolve @import/@use inside node_modules. Using ~ means looking for files in node_modules or resolve.alias or resolve.fallback.

    ⚠ BREAKING CHANGES

    • minimum supported webpack version is 5

    Features

    ... (truncated)

    Commits
    • 6ceaa0f chore(release): 12.0.0
    • e013c4f chore: fix engines (#960)
    • 530765b chore!: minimum supported Node.js version is 12.13.0
    • a248836 refactor: logic of sass resolution
    • 6641a16 fix: resolving _index.import.scss/index.import.scss in packages (#906)
    • 67aa139 fix: crash in custom importers with worker threads (#958)
    • 2b6b4f3 chore(deps): update
    • 8b1ff66 chore(release): 11.1.1
    • 4ca004b fix: disabled auto importing fiber on node >= 16 due incompatibility proble...
    • 5ec86a5 chore(deps): bump handlebars from 4.7.6 to 4.7.7 (#943)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    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.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies javascript 
    opened by dependabot-preview[bot] 2
  • Bump sass-loader from 10.2.0 to 11.1.1

    Bump sass-loader from 10.2.0 to 11.1.1

    Bumps sass-loader from 10.2.0 to 11.1.1.

    Release notes

    Sourced from sass-loader's releases.

    v11.1.1

    11.1.1 (2021-05-13)

    Bug Fixes

    • disabled auto importing fiber on node >= 16 due incompatibility problems (#950) (4ca004b)

    v11.1.0

    11.1.0 (2021-05-10)

    Features

    v11.0.1

    11.0.1 (2021-02-08)

    Bug Fixes

    • compatibility with custom importers for node-sass (#927) (af5a072)

    v11.0.0

    Notes

    • using ~ is deprecated and can be removed from your code (we recommend it), but we still support it for historical reasons.

    Why you can removed it? The loader will first try to resolve @import/@use as relative, if it cannot be resolved, the loader will try to resolve @import/@use inside node_modules. Using ~ means looking for files in node_modules or resolve.alias or resolve.fallback.

    ⚠ BREAKING CHANGES

    • minimum supported webpack version is 5

    Features

    • supported the resolve.byDependency option, you can setup { resolve: { byDependency: { sass: { mainFiles: ['custom', '...'] } } } }
    Changelog

    Sourced from sass-loader's changelog.

    11.1.1 (2021-05-13)

    Bug Fixes

    • disabled auto importing fiber on node >= 16 due incompatibility problems (#950) (4ca004b)

    11.1.0 (2021-05-10)

    Features

    11.0.1 (2021-02-08)

    Bug Fixes

    • compatibility with custom importers for node-sass (#927) (af5a072)

    11.0.0 (2021-02-05)

    Notes

    • using ~ is deprecated and can be removed from your code (we recommend it), but we still support it for historical reasons.

    Why you can removed it? The loader will first try to resolve @import/@use as relative, if it cannot be resolved, the loader will try to resolve @import/@use inside node_modules. Using ~ means looking for files in node_modules or resolve.alias or resolve.fallback.

    ⚠ BREAKING CHANGES

    • minimum supported webpack version is 5

    Features

    • supported the resolve.byDependency option, you can setup { resolve: { byDependency: { sass: { mainFiles: ['custom', '...'] } } } }

    10.1.1 (2021-01-11)

    Bug Fixes

    • problem with resolving and the includePaths option (#913) (cadc75e)

    10.1.0 (2020-11-11)

    ... (truncated)

    Commits
    • 8b1ff66 chore(release): 11.1.1
    • 4ca004b fix: disabled auto importing fiber on node >= 16 due incompatibility proble...
    • 5ec86a5 chore(deps): bump handlebars from 4.7.6 to 4.7.7 (#943)
    • f2ea0ca chore(deps): bump lodash from 4.17.20 to 4.17.21 (#944)
    • 565eb3f chore(release): 11.1.0
    • 7869b29 feat: support node-sass v6.0.0 (#947)
    • 00a46a7 chore(deps): bump hosted-git-info from 2.8.8 to 2.8.9 (#946)
    • 883edd2 docs(readme): improve readability of resolving import at-rules and fix webpac...
    • 0c12b61 docs: fix typos
    • d0be2b5 docs: added important information about sass-loader (#931)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    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.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies javascript 
    opened by dependabot-preview[bot] 2
  • Bump sass-loader from 10.2.0 to 11.1.0

    Bump sass-loader from 10.2.0 to 11.1.0

    Bumps sass-loader from 10.2.0 to 11.1.0.

    Release notes

    Sourced from sass-loader's releases.

    v11.1.0

    11.1.0 (2021-05-10)

    Features

    v11.0.1

    11.0.1 (2021-02-08)

    Bug Fixes

    • compatibility with custom importers for node-sass (#927) (af5a072)

    v11.0.0

    Notes

    • using ~ is deprecated and can be removed from your code (we recommend it), but we still support it for historical reasons.

    Why you can removed it? The loader will first try to resolve @import/@use as relative, if it cannot be resolved, the loader will try to resolve @import/@use inside node_modules. Using ~ means looking for files in node_modules or resolve.alias or resolve.fallback.

    ⚠ BREAKING CHANGES

    • minimum supported webpack version is 5

    Features

    • supported the resolve.byDependency option, you can setup { resolve: { byDependency: { sass: { mainFiles: ['custom', '...'] } } } }
    Changelog

    Sourced from sass-loader's changelog.

    11.1.0 (2021-05-10)

    Features

    11.0.1 (2021-02-08)

    Bug Fixes

    • compatibility with custom importers for node-sass (#927) (af5a072)

    11.0.0 (2021-02-05)

    Notes

    • using ~ is deprecated and can be removed from your code (we recommend it), but we still support it for historical reasons.

    Why you can removed it? The loader will first try to resolve @import/@use as relative, if it cannot be resolved, the loader will try to resolve @import/@use inside node_modules. Using ~ means looking for files in node_modules or resolve.alias or resolve.fallback.

    ⚠ BREAKING CHANGES

    • minimum supported webpack version is 5

    Features

    • supported the resolve.byDependency option, you can setup { resolve: { byDependency: { sass: { mainFiles: ['custom', '...'] } } } }

    10.1.1 (2021-01-11)

    Bug Fixes

    • problem with resolving and the includePaths option (#913) (cadc75e)

    10.1.0 (2020-11-11)

    Features

    • allow the additionalData to be async (#902) (9d925ff)

    10.0.5 (2020-11-02)

    ... (truncated)

    Commits
    • 565eb3f chore(release): 11.1.0
    • 7869b29 feat: support node-sass v6.0.0 (#947)
    • 00a46a7 chore(deps): bump hosted-git-info from 2.8.8 to 2.8.9 (#946)
    • 883edd2 docs(readme): improve readability of resolving import at-rules and fix webpac...
    • 0c12b61 docs: fix typos
    • d0be2b5 docs: added important information about sass-loader (#931)
    • 71456e9 docs: resize Sass logo (#929)
    • 1329538 docs: update changelog
    • 58858f5 chore(release): 11.0.1
    • af5a072 fix: compatibility with custom importers for node-sass (#927)
    • Additional commits viewable in compare view

    Dependabot compatibility score

    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.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies javascript 
    opened by dependabot-preview[bot] 2
  • Bump tailwindcss from 1.9.6 to 2.1.2

    Bump tailwindcss from 1.9.6 to 2.1.2

    Bumps tailwindcss from 1.9.6 to 2.1.2.

    Release notes

    Sourced from tailwindcss's releases.

    v2.1.2

    Fixed

    • Fix issue where JIT engine would generate the wrong CSS when using PostCSS 7 (#4078)

    v2.1.1

    Fixed

    • Fix issue where JIT engine would fail to compile when a source path isn't provided by the build runner for the current input file (#3978)

    v2.1.0

    Tailwind CSS v2.1.0

    The first new feature update since Tailwind CSS v2.0 is here and loaded with lots of cool stuff!

    New features

    JIT engine in core (#3905)

    The brand-new JIT engine we announced in March has now been merged into core, and is available as an opt-in feature using a new mode option in your tailwind.config.js file:

    // tailwind.config.js
    module.exports = {
      mode: 'jit',
      purge: [
        // ...
      ],
      // ...
    }
    

    This feature is still in preview which means some details may change as we iron out the kinks, and it's not subject to semantic versioning.

    If you were using @tailwindcss/jit before, you can now migrate to Tailwind CSS v2.1 instead, as that's where all new development on the engine will happen.

    ... (truncated)

    Changelog

    Sourced from tailwindcss's changelog.

    [2.1.2] - 2021-04-23

    Fixed

    • Fix issue where JIT engine would generate the wrong CSS when using PostCSS 7 (#4078)

    [2.1.1] - 2021-04-05

    Fixed

    • Fix issue where JIT engine would fail to compile when a source path isn't provided by the build runner for the current input file (#3978)

    [2.1.0] - 2021-04-05

    Added

    • Add alternate JIT engine (in preview) (#3905)
    • Add new mix-blend-mode and background-blend-mode utilities (#3920)
    • Add new box-decoration-break utilities (#3911)
    • Add new isolation utilities (#3914)
    • Add inline-table display utility (#3563)
    • Add list-item display utility (#3929)
    • Add new filter and backdrop-filter utilities (#3923)

    [2.0.4] - 2021-03-17

    Fixed

    • Pass full var(--bg-opacity) value as opacityValue when defining colors as functions

    [2.0.3] - 2021-02-07

    Fixed

    • Ensure sourcemap input is deterministic when using @apply in Vue components (#3356)
    • Ensure placeholder opacity is consistent across browsers (#3308)
    • Fix issue where theme() didn't work with colors defined as functions (#2919)
    • Enable dark variants by default for color opacity utilities (#2975)

    Added

    • Add support for a tailwind.config.cjs file in Node ESM projects (#3181)
    • Add version comment to Preflight (#3255)
    • Add cursor-help by default (#3199)

    [2.0.2] - 2020-12-11

    Fixed

    • Fix issue with @apply not working as expected with !important inside an atrule (#2824)

    ... (truncated)

    Commits

    Dependabot compatibility score

    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.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies javascript 
    opened by dependabot-preview[bot] 2
  • Bump tailwindcss from 1.9.6 to 2.1.1

    Bump tailwindcss from 1.9.6 to 2.1.1

    Bumps tailwindcss from 1.9.6 to 2.1.1.

    Release notes

    Sourced from tailwindcss's releases.

    v2.1.0

    Tailwind CSS v2.1.0

    The first new feature update since Tailwind CSS v2.0 is here and loaded with lots of cool stuff!

    New features

    JIT engine in core (#3905)

    The brand-new JIT engine we announced in March has now been merged into core, and is available as an opt-in feature using a new mode option in your tailwind.config.js file:

    // tailwind.config.js
    module.exports = {
      mode: 'jit',
      purge: [
        // ...
      ],
      // ...
    }
    

    This feature is still in preview which means some details may change as we iron out the kinks, and it's not subject to semantic versioning.

    If you were using @tailwindcss/jit before, you can now migrate to Tailwind CSS v2.1 instead, as that's where all new development on the engine will happen.

    New filter and backdrop-filter utilities (#3923)

    This is a huge one — we've finally added first-class support for CSS filters!

    They work a lot like our transform utilities, where you use filter to enable filters, and combine it with utilities like grayscale, blur-lg, or saturate-200 to compose filters on the fly.

    Here's what filter looks like:

    <div class="filter blur-md grayscale invert ...">
    </tr></table> 
    

    ... (truncated)

    Changelog

    Sourced from tailwindcss's changelog.

    Changelog

    All notable changes to this project will be documented in this file.

    The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

    [Unreleased]

    Added

    • Add alternate JIT engine (in preview) (#3905)
    • Add new mix-blend-mode and background-blend-mode utilities (#3920)
    • Add new box-decoration-break utilities (#3911)
    • Add new isolation utilities (#3914)
    • Add inline-table display utility (#3563)
    • Add list-item display utility (#3929)
    • Add new filter and backdrop-filter utilities (#3923)

    [2.0.4] - 2021-03-17

    Fixed

    • Pass full var(--bg-opacity) value as opacityValue when defining colors as functions

    [2.0.3] - 2021-02-07

    Fixed

    • Ensure sourcemap input is deterministic when using @apply in Vue components (#3356)
    • Ensure placeholder opacity is consistent across browsers (#3308)
    • Fix issue where theme() didn't work with colors defined as functions (#2919)
    • Enable dark variants by default for color opacity utilities (#2975)

    Added

    • Add support for a tailwind.config.cjs file in Node ESM projects (#3181)
    • Add version comment to Preflight (#3255)
    • Add cursor-help by default (#3199)

    [2.0.2] - 2020-12-11

    Fixed

    • Fix issue with @apply not working as expected with !important inside an atrule (#2824)
    • Fix issue with @apply not working as expected with defined classes (#2832)
    • Fix memory leak, and broken @apply when splitting up files (#3032)

    Added

    ... (truncated)

    Commits

    Dependabot compatibility score

    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.

    If all status checks pass Dependabot will automatically merge this pull request.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
    • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
    • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
    • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
    • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

    Additionally, you can set the following in your Dependabot dashboard:

    • Update frequency (including time of day and day of week)
    • Pull request limits (per update run and/or open at any time)
    • Automerge options (never/patch/minor, and dev/runtime dependencies)
    • Out-of-range updates (receive only lockfile updates, if desired)
    • Security updates (receive only security updates, if desired)
    dependencies javascript 
    opened by dependabot-preview[bot] 2
Releases(4.0.5)
Owner
Appoly
Innovative technology app and web development studio
Appoly
A mail driver to quickly preview mail

A mail driver to quickly preview mail This package can display a small overlay whenever a mail is sent. The overlay contains a link to the mail that w

Spatie 1k Jan 4, 2023
Laravel mailer which will catch all the sent emails and show them on an application view.

Laravel Web Mailer This package contains a web mailer which will catch all the sent emails. Then, you can view it visiting the route /web-inbox. The e

Creagia 54 Dec 16, 2022
PostfixAdmin - web based virtual user administration interface for Postfix mail servers

PostfixAdmin An open source, web based interface for managing domains/mailboxes/aliases etc on a Postfix based mail server.

PostfixAdmin 755 Jan 3, 2023
A testing package for intercepting mail sent from Laravel

Laravel Mail Intercept A testing package for intercepting mail sent from Laravel This testing suite intercepts Laravel Mail just before they are sent

Kirschbaum Development Group, LLC 91 Oct 18, 2022
Laravel Mail Credentials switcher for Budget Laravel Applications

Laravel Mail Switcher Laravel Mail Credentials Switcher is a library which helps you to: Manage your Mail Service Credentials Configure the Laravel's

(Seth) Phat Tran 34 Dec 24, 2022
Offer an online version of your Laravel emails to users.

This is was a collaborative project with Ryan Chandler. Please consider supporting him for the hard work he put into this package! Help support the ma

Sam Carré 251 Dec 25, 2022
An AngularJS / Laravel app - Keyword Based Email forwarder | read/write emails through IMAP

@MailTree Simple mail forwarder. Based on the specific email body/subject keywords forward mails to the list of predefined users. Install Imap Install

Dren Kajmakchi 4 Aug 21, 2018
Store outgoing emails in Laravel

Record and view all sent emails Watch a video walkthrough https://www.youtube.com/watch?v=Oj_OF5n4l4k&feature=youtu.be Documentation and install instr

David Carr 203 Dec 15, 2022
Send beautiful HTML emails with Laravel

Beautymail for Laravel Beautymail makes it super easy to send beautiful responsive HTML emails. It's made for things like: Welcome emails Password rem

null 1.1k Jan 2, 2023
Laravel Mail Catcher Driver

Laravel Mail Catcher Driver This package include a new mailbase driver which will catch all the sent emails and save it to the database. It then expos

Tauqeer Liaqat 94 Aug 30, 2022
✉️ Laravel Mail Explorer

Mailbook Mailbook is a Laravel package that lets you easily inspect your mails without having to actually trigger it in your application. View demo In

Max Hoogenbosch 88 Dec 29, 2022
Mandrill mail driver for Laravel for version 6+

Laravel Mandrill Driver This package re-enables Mandrill driver functionality using the Mail facade in Laravel 6+. To install the package in your proj

Eng Hasan Hajjar 2 Sep 30, 2022
CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very usefull when you're sending emails.

CssToInlineStyles class Installation CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline style

Tijs Verkoyen 5.7k Dec 29, 2022
Manage mailboxes, filter/get/delete emails in PHP (supports IMAP/POP3/NNTP)

PHP IMAP Initially released in December 2012, the PHP IMAP Mailbox is a powerful and open source library to connect to a mailbox by POP3, IMAP and NNT

Sergey 1.5k Jan 3, 2023
The Mailer component helps sending emails

Mailer Component The Mailer component helps sending emails. Getting Started $ composer require symfony/mailer use Symfony\Component\Mailer\Transport;

Symfony 1.1k Jan 7, 2023
Allows you to archive old emails from one Gmail mailbox to another Gmail mailbox

Gmail Archiver L'application Gmail archiver permet de déplacer automatiquement tous les vieux mails d'une boite Gmail vers une autre boite Gmail (ou é

Arnaud Lemercier 19 Jan 27, 2022
Queue, preview and and send emails stored in the database.

Codeigniter4 email queue Queue, preview and and send emails stored in the database. This package provides an interface for creating emails on the fly

null 3 Apr 12, 2022
This application (class) does the sending of emails used in the phpmailer library

emailsender - PHP Notification library via email using phpMailer This library has the function of sending email using the phpmailer library. Doing thi

Lucas Alcantara Rodrigues Volpati 1 Feb 9, 2022
A ready-to-use PHP script for sending Emails with an HTML Template will use a Gmail account as the sender and you will not need any email server. Powered by PHPMailer.

Gmail Email Sender by PHP A ready-to-use PHP script for sending Emails with an HTML Template will use a Gmail account as the sender and you will not n

Max Base 4 Oct 29, 2022