Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump html-bundler-webpack-plugin from 2.15.2 to 3.1.3 #82

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 27, 2023

Bumps html-bundler-webpack-plugin from 2.15.2 to 3.1.3.

Release notes

Sourced from html-bundler-webpack-plugin's releases.

v3.1.3

Features

  • Added support for the template function in JS runtime on the client-side in the browser.
    For example:
import personTmpl from './partials/person.ejs';
// render template function with variables in browser
document.getElementById('person').innerHTML = personTmpl({ name: 'Walter White', age: 50});

The template function works with preprocessors: ejs, handlebars, nunjucks.
Note: The eta (default preprocessor) doesn't support the template function in JS on the client-side, use the ejs instead.

  • Added CSS extraction from styles used in *.vue files.
    For example, MyComponent.vue:
    \<template>
      ...
    </template>
    <script setup>
      ...
    </script>
    <!-- CSS will be extracted from the SCSS file into a separate *.css file -->
    <style src="./style.scss" lang="scss"></style>
    <!-- CSS will be extracted from the style tag into a separate *.css file -->
    <style>
      h1 {
        color: red;
      }
    </style>

Bug fixes

  • FIxed access to @root variables in Handlebars partial helper inside the each block.

v3.0.3

Bug fixes

  • Fixed installation error 'Invalid tag name of the favicons package' (introduced in v3.0.0).
  • Added the missing plugins directory to package.

v3.0.1

🔆 What's New in v3

⚠ BREAKING CHANGE (v3.0.0):

... (truncated)

Changelog

Sourced from html-bundler-webpack-plugin's changelog.

3.1.3 (2023-11-24)

  • fix: fatal error when using the handlebars preprocessor (introduced in v3.1.2)
  • fix: access @root variables in hbs partial helper inside the each block

3.1.2 (2023-11-24) DEPRECATED: the critical bug by using the handlebars preprocessor is fixed in the v3.1.3

  • fix: access @root variables in hbs partial helper inside the each block

3.1.1 (2023-11-23)

  • fix: define js.test field in types.d.ts as optional

3.1.0 (2023-11-22)

  • feat: add support for the template function in JS runtime on the client-side.
    For example:
    import personTmpl from './partials/person.ejs';
    // render template function with variables in browser
    document.getElementById('person').innerHTML = personTmpl({ name: 'Walter White', age: 50});
    Template function works with preprocessors: ejs, handlebars, nunjucks.
    Note: The eta (default preprocessor) doesn't support template function in JS on the client-side, use the ejs instead.
  • feat: add CSS extraction from styles used in *.vue files.
    For example, MyComponent.vue:
    \<template>
      ...
    </template>
    <script setup>
      ...
    </script>
    <!-- CSS will be extracted from the SCSS file into a separate *.css file -->
    <style src="./style.scss" lang="scss"></style>
    <!-- CSS will be extracted from the style tag into a separate *.css file -->
    <style>
      h1 {
        color: red;
      }
    </style>

3.0.3 (2023-11-13)

  • fix: add the missing plugins directory to package
  • chore: add usage example of the build-in favicons plugin

3.0.2 (2023-11-13) DEPRECATED, critical issue is fixed in v3.0.3

... (truncated)

Commits
  • d86adbe fix: fatal error when using the handlebars preprocessor
  • 5454427 fix: access @root variables in hbs partial helper inside the each block
  • 8fc9877 fix: define js.test field in types.d.ts as optional
  • 9c3850e test: add hbs test for access @​root variables
  • 59bd7f4 release v3.1.0
  • 571e35d chore: fix spelling in changelog
  • 3d2db51 Merge pull request #51 from Striffly/patch-1
  • 563b356 test: fix testing condition of source.filter option
  • dd254dd README.md : Fix meta filter condition
  • 54a43d5 fix: add the root dir of the module to exports in the package.json
  • 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.


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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [html-bundler-webpack-plugin](https://github.com/webdiscus/html-bundler-webpack-plugin) from 2.15.2 to 3.1.3.
- [Release notes](https://github.com/webdiscus/html-bundler-webpack-plugin/releases)
- [Changelog](https://github.com/webdiscus/html-bundler-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webdiscus/html-bundler-webpack-plugin@v2.15.2...v3.1.3)

---
updated-dependencies:
- dependency-name: html-bundler-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 27, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 28, 2023

Superseded by #83.

@dependabot dependabot bot closed this Nov 28, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/html-bundler-webpack-plugin-3.1.3 branch November 28, 2023 15:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants