Skip to content
This repository has been archived by the owner on Feb 14, 2024. It is now read-only.

fix(deps): update appsgenel #48

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

fix(deps): update appsgenel #48

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 1, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@maizzle/framework (source) 4.0.2 -> 4.7.6 age adoption passing confidence
autoprefixer 10.4.8 -> 10.4.17 age adoption passing confidence
tailwindcss-email-variants 2.0.0 -> 2.0.3 age adoption passing confidence
tailwindcss-mso 1.2.0 -> 1.4.1 age adoption passing confidence

Release Notes

maizzle/framework (@​maizzle/framework)

v4.7.6

Compare Source

This patch release mainly improves and adds a few more type definitions.

Added
Changed
  • updated build.browsersync types b8eeb4c
  • export only necessary types f69a6aa
  • build(deps): bump postcss to 8.4.35 33fe6ec

v4.7.5

Compare Source

  • refactor: use fast-glob instead of glob-promise b23ecb6

v4.7.4

Compare Source

Changed
  • revert: use prettier for prettify transformer e8fa91d

v4.7.3

Compare Source

Fixed
  • prettify formatting issues a1be18b
    • use default embeddedLanguageFormatting (auto)
    • rewrite closing slash only for known self closing tags
    • fix style="" attribute values broken on multiple lines
    • fix broken </pre> closing tags (> on separate line)
    • undo escaping ' to &quot; in attribute values
    • fix some attributes and closing > being broken on to a separate line

v4.7.2

Compare Source

Fixed
  • fix: remove custom regexes in prettier output reformatting 1d3c97b
  • fix: prevent prettier from formatting embedded code e945952
Changed
  • build(deps): bump autoprefixer from 10.4.16 to 10.4.17 d0f14f4
  • build(deps): bump prettier from 3.2.2 to 3.2.4 e628012
  • chore: create FUNDING.yml d2c670f
  • build(deps): bump prettier from 3.1.1 to 3.2.2 0063021

v4.7.1

Compare Source

  • fix: don't remove space before style attribute 5e923b3

v4.7.0

Compare Source

This release switches the prettify Transformer to use prettier instead of pretty, fixing an issue with indenting HTML comments (#​1071)

  • feat: use prettier for prettify transformer 4861d77
  • build(deps-dev): bump c8 from 9.0.0 to 9.1.0 eece5a2
  • build(deps): bump posthtml-base-url from 2.0.0 to 2.0.1 5928de0
  • build(deps): bump posthtml-content from 1.0.2 to 1.0.3 94ce6e5
  • chore: update readme.md 36136cd

v4.6.5

Compare Source

  • build(deps): bump posthtml-content from 0.1.2 to 1.0.2 8bb1e0c
  • build(deps): bump follow-redirects from 1.15.2 to 1.15.4 33f228c
  • build(deps): bump posthtml-match-helper from 1.0.3 to 1.0.4 691a899
  • build(deps): bump tailwindcss from 3.4.0 to 3.4.1 7e1c431
  • build(deps): bump postcss from 8.4.32 to 8.4.33 3ce0513

v4.6.4

Compare Source

  • build(deps-dev): bump c8 from 8.0.1 to 9.0.0 4c2bd26
  • build(deps): bump postcss-merge-longhand from 6.0.1 to 6.0.2 eb9895e

v4.6.3

Compare Source

  • revert: object merging 9ac0e80
  • build(deps): bump browser-sync from 2.29.3 to 3.0.2 ee7c0a3
  • change order of transformers, put function below the guard 66694a6

v4.6.2

Compare Source

A quick patch release so we can update to Tailwind CSS 3.4, among others:

  • build(deps): bump tailwindcss from 3.3.7 to 3.4.0 671944d
  • build(deps): bump postcss-merge-longhand from 6.0.0 to 6.0.1 495dd71
  • build(deps-dev): bump np from 9.1.0 to 9.2.0 fb6c84b
  • build(deps): bump juice from 9.1.0 to 10.0.0 bf86fb7
  • build(deps): bump postcss from 8.4.31 to 8.4.32 6f54a6c
  • build(deps): bump fs-extra from 10.1.0 to 11.2.0 48bcaf2
  • build(deps-dev): bump @​types/markdown-it from 13.0.6 to 13.0.7 be1399d

v4.6.1

Compare Source

This release adds support for maizzle.config.js files and fixes an issue with the file watcher.

Here's how you can use it:

Config file Command
config.js or
maizzle.config.js
maizzle build
maizzle serve
config.production.js or
maizzle.config.production.js
maizzle build production
maizzle serve production
Fixed
  • await write finish when watching files d82c1d2
  • browsersync config file watcher 31bd40b
  • add support for maizzle.config.js files c97f5a8

v4.6.0

Compare Source

New features

This release adds type definitions to all exports (thanks to @​gaurishhs), so you can now get autocomplete suggestions in your editor.

For example, here's config.js in VS Code:

image
Fixed

#​1058 fixed an issue with how data structures (objects) were merged, which was causing values to be overwritten in arrays nested inside an object (raised in #​1057).

v4.5.0

Compare Source

New features

This release exposes the config object as the second parameter of the afterBuild event function, so you can read it like this:

// config.production.js
module.exports = {
  // ...
  events: {
    afterBuild(files, config) {
      const env = config.env

	  // do stuff with env
	}
  }
}
Commits
  • feat: expose config in afterBuild event 52c1246
  • build(deps-dev): bump c8 from 8.0.0 to 8.0.1 cddccd5
  • build(deps): bump postcss from 8.4.26 to 8.4.27 8ff61ca

v4.4.7

Compare Source

Changed

Changed the default role attribute value from presentation to none - they both do the same thing and none is 8 characters shorter:

- <table cellpadding="0" cellspacing="0" role="presentation">
+ <table cellpadding="0" cellspacing="0" role="none">

So if your email has ~125 tables, this automatically saves 1kB. Doesn't sound like much, but it's an easy win and can add up.

  • refactor: prefer role none over presentation 979fe21

v4.4.6

Compare Source

This patch release changes when the safeClassNames Transformer runs by default and fixes an issue where the incorrect Tailwind config was being used with the tailwindcss filter (i.e. in <style tailwindcss>).

  • fix: use local tailwind config in filter #​1017, dc3f5c8
  • fix: disabling safeClassNames when not developing locally #​1016, 1bb5ced
  • refactor: running safeClassNames transformer #​1016, e06df04
  • build(deps): bump postcss from 8.4.23 to 8.4.24 d6abc6e
  • build(deps-dev): bump c8 from 7.13.0 to 7.14.0 8d8af3d

v4.4.5

Compare Source

This patch release updates some dependencies and fixes a couple of issues with Tailwind CSS and the removeUnusedCSS Transformer.

Fixed

v4.4.4

Compare Source

Fixed
  • fixed an issue where selectors safelisted with removeUnusedCSS.whitelist were still being removed after they were inlined. To make sure that a selector that was inlined will not be removed from the HTML markup, you need to safelist it like this:

    // config.production.js
    module.exports = {
     // ...
      inlineCSS: true,
      removeUnusedCSS: {
        whitelist: ['.preserve-me'] // need the full CSS selector with leading dot etc., not just "preserve-me"
      },
    }
  • fixed an issue where removeInlinedSelectors could not be disabled.

    You may now choose to not remove from the HTML any CSS classes that were inlined:

    // config.production.js
    module.exports = {
     // ...
      inlineCSS: true,
      removeUnusedCSS: {
        removeInlinedSelectors: false,
      },
    }

    CSS will be inlined, but classes will not be removed from the elements or from <style>.


v4.4.3

Compare Source

Changed
  • build(deps): bump tailwindcss from 3.2.7 to 3.3.0 9d4010e
  • build(deps): bump postcss-merge-longhand from 5.1.7 to 6.0.0 7f9693c

v4.4.2

Compare Source

Fixed

v4.4.1

Compare Source

Fixed
  • fixed an issue where utilities in Templates inside directories with dots in their name (like src/templates/test.com) were not being generated
Changed
  • add {raw: html, extension: 'html'} to Tailwind's content.files only if html was passed to the Tailwind compiler - this happens/is needed only when using Maizzle programmatically, so we removed it for normal use cases

v4.4.0

Compare Source

🥳 v4.4.0 is here, bringing a new Components system, new Starter components, omit/skip, and tons of bugfixes!

New features

  • Blade-like Components system

    We have a new, awesome Components system! It uses Blade-like syntax and comes with a lot of cool features, like slots, stacks, props, and more! Checkout the new Components documentation for more information.

  • Added new Starter Components: Spacer, Divider, Button

  • Added new omit option for templates (docs) #​851

  • Added new skip option for templates (docs) #​851

  • Added shorthandCSS as an alias for shorthandInlineCSS #​855

  • Added support for config.cjs files #​873

  • Added support for for tag name in loops #​902

Changed

  • Updated the official Starter to use the new Components syntax
  • Updated tailwind.config.js in the Starter to use types, so you now get autocompletion for config keys in your IDE
  • Improved build error message when you don't have a build.templates.source defined in the config #​878
  • Do not duplicate CSS properties to HTML attributes by default 6c36024

Fixed

  • Fixed issue in removeUnusedCSS where some selectors were being purged even if they were a pseudo selector or part of a media query #​853
  • Fixed an issue with removing possibly inlined CSS selectors from the <style> tag #​855
  • Fixed an issue with CSS shorthand inconsistencies between inline CSS and CSS in <style> tag #​855
  • Fixed an issue where the string undefined was being prepended to VML src paths if you were using object syntax for baseURL #​857
  • Fixed an issue with baseURL defaults preventing URLs from being prepended, when it was configured as an object #​877
  • Fixed an issue where new data added to the config while the server is running were not always available when developing locally #​886
  • Fixed a bug where your custom Tailwind config object was not being used when rendering emails through the Maizzle API #​890
  • Fixed an issue where information about the current template was not being updated when developing locally #​897
  • Fixed an issue where an empty Tailwind CSS config was being used when developing locally #​899, #​900
  • Fixed an issue where saving a template file while developing locally was outputting it in a wrong location #​901
  • Fixed an issue where removeUnusedCSS was running in local dev, even though it wasn't enabled in the config f105672
  • Fixed an issue with Tailwind CSS content paths for Layouts and Components were removed if the user configured content as an array in their tailwind.config.js 0641846
  • Fixed specificity issue where you couldn't override an existing class because everything had !important d4e54da
  • Fixed an issue with the permalink Front Matter option not working 4e4f742

v4.3.1

Compare Source

  • build(deps): bump engine.io from 6.2.0 to 6.2.1 8902315
  • build(deps): update ava to version 5.1.0 eb6e791
  • build(deps): update tailwindcss to version 3.2.4 a92ef1a
  • build(deps): update postcss to version 8.4.19 680c25b
  • build(deps): update postcss-merge-longhand to version 5.1.7 018a940
  • build(deps): update autoprefixer to version 10.4.13 ec47b36

v4.3.0

Compare Source

Added
Fixed
  • fix: ensure styleToAttribute is enabled ea2ea39
  • fix: using lowercase tag names for width/height attributes af9b6dc
  • fix: use inlineCss options from config 876ce9a
  • fix: lowercase tag names in keepOnlyAttributeSizes 0c6d9e9
  • fix: run removeUnusedCSS only if enabled 33b07b2

v4.2.5

Compare Source

Fixed
  • fixed an issue where you couldn't use classes containing commas, such as bg-[rgba(0,0,0,0.75)], because safeClassNames wasn't handling them properly 2f57d42
Changed
  • added a files key to package.json, to define the files that should be included in the package 4a8beb7
  • moved from dependabot to depfu 4ce5ec5

v4.2.4

Compare Source

Fixed

v4.2.3

Compare Source

Changed
  • refactor: add default replacements for safeClassNames (#​797, 3815cd1)
  • refactor: add backend delimiters defaults to removeUnusedCSS (#​797, 538a93d)
  • refactor: removeAttributes transformer 344b2b2
  • build(deps): remove posthtml-remove-attributes dependency 1eb77b0
  • refactor: use default posthtml options 27d54ff
  • refactor: use string-strip-html library for preventing widow words a5aef6c
Fixed
  • fix: ensure href values in not-plaintext tags are removed (#​780, 1ef8e8e)
  • fix: remove empty <style> tags aae4813
  • fix: normalize content source paths (e4b5da2, b1beedf)
  • fix: respect config.js root paths in tailwindcss content sources 5d6fc16
  • fix: handle undefined node.attrs in prevent widows transformer 4035533
  • fix: prevent some transformers from adding ="" to valueless attributes (4824329, 6f5a149, 1eec925, a8a1299)

v4.2.2

Compare Source

Fixed

v4.2.1

Compare Source

Fixed
  • make file config for Maizzle optional 28d42c3
  • don't require build.tailwind.css in postcss filter 923f24b
  • use postcss-import only if the build.tailwind.css file exists fb28b23
  • don't require _options for urlParameters transformer 19ffe0c
  • fixed an issue where the build.tailwind.compiled path was not being used if defined d141425
  • pass posthtml options to transformers c98ac58
  • pass expressions options to components 558d4cd
Changed
  • ci: run tests in parallel 4e25bed
  • changed the tailwindcss compilation error to throw a SyntaxError instead of console.erroring a plain Error 4a9d6ec

v4.2.0

Compare Source

Added

Added a <not-plaintext> tag that you can use to discard content from a plaintext version while still keeping it in the HTML.

<div>Show everywhere</div>
<plaintext>Show in plaintext</plaintext>
<not-plaintext>
  <p>Show only in HTML</p>
</not-plaintext>

Plaintext:

Show everywhere
Show in plaintext

HTML:

<div>Show everywhere</div>
<p>Show only in HTML</p>
Fixed

Fixed an issue where plaintext: true in a template's Front Matter was not generating the plaintext file (#​707, 254490e)

v4.1.2

Compare Source

This release adds a fix for compatibility with plugins such as @tailwindcss/typography that use advanced regex patterns that might cause the CSS cleanup function to break.

Changed
  • fix: skip match helper error d5de926

v4.1.1

Compare Source

This release fixes an issue with CSS cleanup, where some properties were being wrongfully removed (#​728)

Changed
  • fix: preserve media and pseudos when removing inlined css 99c1aee
  • fix: check for prop existence when removing rule ee649d3

v4.1.0

Compare Source

New features

CSS selectors urlParameters tags

As requested in #​749, you may now use CSS selectors to select only certain tags or attributes to apply URL parameters to:

module.exports = {
  urlParameters: {
    _options: {
      tags: ['a.button', 'a[href*="example.com"]', 'link'],
    },
    utm_source: 'maizzle',
  }
}

This way you can apply parameters only to specific URLs, or only to URLs on certain <a> tags, for example.

Simplified baseURL tags list

It's now easier to apply a baseURL to just a few tags, by simply passing in the tags list in array format:

module.exports = {
  baseURL: {
    url: 'https://cdn.example.com/',
    tags: ['img'],
  },
}

That will apply the url to all known source attributes on all <img> elements in your HTML, like src="" or srcset=".

Support for @font-face in baseURL

The baseURL transformer now prepends URLs to url() sources in @font-face declarations.

build.current.path

The config now contains build.current.path, an object containing a parsed path of the currently being processed template file:

module.exports = {
  build: {
    current: {
      path: {
        root: '',
        dir: 'build_production',
        base: 'transactional.html',
        ext: '.html',
        name: 'transactional'
      }
    }
  }
}
strict option for urlParameters

By default, the urlParameters transformer will append query parameters only to valid URLs.

You may disable strict mode to append parameters to any string:

module.exports = {
  urlParameters: {
    _options: {
      strict: false,
    },
    foo: 'bar'
  }
}

Input:

<a href="example.com">test</a>

Result:

<a href="example.com?foo=bar">test</a>

v4.0.3

Compare Source

Changed
  • fix: don't watch tailwind config if object ec16e2f
  • updated dependencies
postcss/autoprefixer (autoprefixer)

v10.4.17

Compare Source

  • Fixed user-select: contain prefixes.

v10.4.16

Compare Source

  • Improved performance (by Romain Menke).
  • Fixed docs (by Christian Oliff).

v10.4.15

Compare Source

  • Fixed ::backdrop prefixes (by 一丝).
  • Fixed docs (by Christian Oliff).

v10.4.14

Compare Source

  • Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).

v10.4.13

Compare Source

  • Fixed missed prefixes on vendor prefixes in name of CSS Custom Property.

v10.4.12

Compare Source

  • Fixed support of unit-less zero angle in backgrounds (by 一丝).

v10.4.11

Compare Source

  • Fixed text-decoration prefixes by moving to MDN data (by Romain Menke).

v10.4.10

Compare Source

  • Fixed unicode-bidi prefixes by moving to MDN data.

v10.4.9

Compare Source

  • Fixed css-unicode-bidi issue from latest Can I Use.
maizzle/tailwindcss-email-variants (tailwindcss-email-variants)

v2.0.3

Compare Source

  • chore: add engines to package.json 3945ad2
  • build(deps-dev): bump tailwindcss from 3.3.2 to 3.3.3 6f01b49
  • build(deps-dev): bump postcss from 8.4.25 to 8.4.26 25c2e9a
  • build(deps-dev): bump np from 8.0.3 to 8.0.4 8c6d03d

v2.0.2

Compare Source

Just a maintenance release that updates some dependencies:

v2.0.1

Compare Source

This release updates dependencies, for the full list of updates see:

maizzle/tailwindcss-mso (tailwindcss-mso)

v1.4.1

Compare Source

v1.4.0

Compare Source

This release migrates the test suite to use Vitest, and adds a bunch of new utilities:

For border colors:

  • mso-border-alt
  • mso-border-between
  • mso-border-bottom-alt
  • mso-border-left-alt
  • mso-border-right-alt
  • mso-border-top-alt

For border widths:

  • mso-border-between-width
  • mso-border-width-alt
  • mso-border-bottom-width-alt
  • mso-border-left-width-alt
  • mso-border-right-width-alt
  • mso-border-top-width-alt

Other border-related utilities:

  • mso-border-bottom-source
  • mso-border-left-source
  • mso-border-right-source
  • mso-border-top-source
  • mso-border-shadow
  • mso-border-effect

Other utilities:

  • mso-shadow-color

Commit highlights:

  • feat: add mso-shadow-color utility f5f3a23
  • feat: add mso-border utilities e054f1b
  • ci: add dependabot config b564bed
  • test: migrate to vitest 123abdd

v1.3.0

Compare Source

Added
  • Support for arbitrary values
  • respectImportant plugin option (by default, the plugin does not respect the important key in your Tailwind config)
  • New utilities
    • mso-font-alt (uses values in your config's fontFamily)
    • mso-arabic-font-family
    • mso-para-margin, mso-para-margin-top, mso-para-margin-right, mso-para-margin-bottom, mso-para-margin-left
    • mso-element-top
    • mso-element-frame-height
    • mso-shading
    • mso-element-wrap
    • mso-element-frame-vspace, mso-element-frame-hspace
Changed
  • replaced ava with jest for tests
Fixed
  • fixed generation of negative value utilities

Configuration

📅 Schedule: Branch creation - "before 6am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Copy link
Contributor Author

renovate bot commented Nov 7, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Scope: all 11 workspace projects
 WARN  GET https://registry.npmjs.org/oku-i18n error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@maizzle/cli/-/cli-1.5.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/tailwindcss-box-shadow/-/tailwindcss-box-shadow-1.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.33.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.33.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-7.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@vue/eslint-config-typescript/-/eslint-config-typescript-11.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint/-/eslint-8.21.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/autoprefixer error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@maizzle%2Fframework error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/tailwindcss-email-variants error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/tailwindcss-mso error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/oku-i18n error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@maizzle/cli/-/cli-1.5.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/tailwindcss-box-shadow/-/tailwindcss-box-shadow-1.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.33.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.33.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-7.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@vue/eslint-config-typescript/-/eslint-config-typescript-11.0.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint/-/eslint-8.21.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.2.1.tgz error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/autoprefixer error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/@maizzle%2Fframework error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/tailwindcss-email-variants error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/tailwindcss-mso error (ERR_INVALID_THIS). Will retry in 1 minute. 1 retries left.
 WARN  GET https://registry.npmjs.org/eslint-plugin-vue/-/eslint-plugin-vue-9.3.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/husky/-/husky-8.0.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 ERR_INVALID_THIS  Value of "this" must be of type URLSearchParams

pnpm [ERR_INVALID_THIS]: Value of "this" must be of type URLSearchParams
    at Proxy.getAll (node:internal/url:527:13)
    at Proxy.<anonymous> (/opt/containerbase/tools/pnpm/7.9.0/node_modules/pnpm/dist/pnpm.cjs:52849:55)
    at /opt/containerbase/tools/pnpm/7.9.0/node_modules/pnpm/dist/pnpm.cjs:52902:31
    at Array.reduce (<anonymous>)
    at Proxy.raw (/opt/containerbase/tools/pnpm/7.9.0/node_modules/pnpm/dist/pnpm.cjs:52901:33)
    at new Headers (/opt/containerbase/tools/pnpm/7.9.0/node_modules/pnpm/dist/pnpm.cjs:52795:28)
    at getNodeRequestOptions (/opt/containerbase/tools/pnpm/7.9.0/node_modules/pnpm/dist/pnpm.cjs:53114:23)
    at /opt/containerbase/tools/pnpm/7.9.0/node_modules/pnpm/dist/pnpm.cjs:53171:25
    at new Promise (<anonymous>)
    at fetch (/opt/containerbase/tools/pnpm/7.9.0/node_modules/pnpm/dist/pnpm.cjs:53169:14)
 WARN  GET https://registry.npmjs.org/prettier/-/prettier-2.7.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/prettier-plugin-tailwindcss/-/prettier-plugin-tailwindcss-0.1.13.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@antfu/eslint-config/-/eslint-config-0.26.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@faker-js/faker/-/faker-7.4.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@mikro-orm/seeder/-/seeder-5.3.1.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.
 WARN  GET https://registry.npmjs.org/@nestjs/cli/-/cli-9.0.0.tgz error (ERR_INVALID_THIS). Will retry in 10 seconds. 2 retries left.

@renovate renovate bot force-pushed the renovate/appsgenel branch 4 times, most recently from 6c610d7 to a9ff791 Compare January 5, 2024 14:09
@renovate renovate bot force-pushed the renovate/appsgenel branch 3 times, most recently from 386c2b0 to 037be28 Compare January 14, 2024 21:13
@renovate renovate bot force-pushed the renovate/appsgenel branch 2 times, most recently from 3d6fbac to a8ea431 Compare January 21, 2024 14:24
@renovate renovate bot force-pushed the renovate/appsgenel branch 2 times, most recently from 06134c2 to 71eae4a Compare January 27, 2024 16:04
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants