Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: webpack-contrib/html-loader
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 90c7b60d41a0af76019dbefa91d45dab90fbdd1e
Choose a base ref
...
head repository: webpack-contrib/html-loader
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d7cccfad615a723ac8a924cd8603667d46a93685
Choose a head ref
Loading
Showing with 24,847 additions and 727 deletions.
  1. +11 βˆ’4 .editorconfig
  2. +4 βˆ’0 .eslintignore
  3. +0 βˆ’24 .eslintrc
  4. +4 βˆ’0 .eslintrc.js
  5. +4 βˆ’0 .gitattributes
  6. +6 βˆ’0 .github/CODEOWNERS
  7. +160 βˆ’0 .github/CONTRIBUTING.md
  8. +1 βˆ’0 .github/FUNDING.yml
  9. +16 βˆ’41 .github/ISSUE_TEMPLATE.md
  10. +50 βˆ’0 .github/ISSUE_TEMPLATE/BUG.md
  11. +28 βˆ’0 .github/ISSUE_TEMPLATE/DOCS.md
  12. +25 βˆ’0 .github/ISSUE_TEMPLATE/FEATURE.md
  13. +27 βˆ’0 .github/ISSUE_TEMPLATE/MODIFICATION.md
  14. +8 βˆ’0 .github/ISSUE_TEMPLATE/SUPPORT.md
  15. +26 βˆ’25 .github/PULL_REQUEST_TEMPLATE.md
  16. +16 βˆ’0 .gitignore
  17. +0 βˆ’26 .jsbeautifyrc
  18. +0 βˆ’20 .npmignore
  19. +5 βˆ’0 .prettierignore
  20. +5 βˆ’0 .prettierrc.js
  21. +0 βˆ’16 .travis.yml
  22. +109 βˆ’0 CHANGELOG.md
  23. +4 βˆ’4 CONTRIBUTING.md
  24. +2 βˆ’4 LICENSE
  25. +685 βˆ’180 README.md
  26. +200 βˆ’0 azure-pipelines.yml
  27. +34 βˆ’0 babel.config.js
  28. +3 βˆ’0 commitlint.config.js
  29. +6 βˆ’0 husky.config.js
  30. +0 βˆ’133 index.js
  31. +0 βˆ’42 lib/attributesParser.js
  32. +4 βˆ’0 lint-staged.config.js
  33. +14,365 βˆ’0 package-lock.json
  34. +80 βˆ’30 package.json
  35. +56 βˆ’0 src/HtmlSourceError.js
  36. +4 βˆ’0 src/cjs.js
  37. +86 βˆ’0 src/index.js
  38. +66 βˆ’0 src/options.json
  39. +4 βˆ’0 src/plugins/index.js
  40. +30 βˆ’0 src/plugins/minimizer-plugin.js
  41. +685 βˆ’0 src/plugins/source-plugin.js
  42. +14 βˆ’0 src/runtime/getUrl.js
  43. +98 βˆ’0 src/utils.js
  44. +3,551 βˆ’0 test/__snapshots__/attributes-option.test.js.snap
  45. +955 βˆ’0 test/__snapshots__/esModule-option.test.js.snap
  46. +398 βˆ’0 test/__snapshots__/loader.test.js.snap
  47. +1,126 βˆ’0 test/__snapshots__/minimize-option.test.js.snap
  48. +46 βˆ’0 test/__snapshots__/preprocessor-option.test.js.snap
  49. +111 βˆ’0 test/__snapshots__/validate-options.test.js.snap
  50. +314 βˆ’0 test/attributes-option.test.js
  51. +8 βˆ’0 test/cjs.test.js
  52. +47 βˆ’0 test/esModule-option.test.js
  53. +8 βˆ’0 test/fixtures/broken-html-syntax.html
  54. +3 βˆ’0 test/fixtures/broken-html-syntax.js
  55. +1 βˆ’0 test/fixtures/broken-interpolation-syntax.html
  56. +3 βˆ’0 test/fixtures/broken-interpolation-syntax.js
  57. 0 test/fixtures/empty.html
  58. +3 βˆ’0 test/fixtures/empty.js
  59. BIN test/fixtures/example.ogg
  60. BIN test/fixtures/example.pdf
  61. 0 test/fixtures/example.vtt
  62. +1 βˆ’0 test/fixtures/fallback.file.js
  63. +1 βˆ’0 test/fixtures/icons.svg
  64. BIN test/fixtures/image image.png
  65. BIN test/fixtures/image.png
  66. BIN test/fixtures/image.png.webp
  67. +1 βˆ’0 test/fixtures/invisible-space.html
  68. +3 βˆ’0 test/fixtures/invisible-space.js
  69. +1 βˆ’0 test/fixtures/module.file.js
  70. +1 βˆ’0 test/fixtures/posthtml.html
  71. +4 βˆ’0 test/fixtures/preprocessor.hbs
  72. +5 βˆ’0 test/fixtures/script.file.js
  73. +1 βˆ’0 test/fixtures/script.js
  74. +271 βˆ’0 test/fixtures/simple.html
  75. +3 βˆ’0 test/fixtures/simple.js
  76. +274 βˆ’0 test/fixtures/sources.html
  77. +3 βˆ’0 test/fixtures/sources.js
  78. +3 βˆ’0 test/fixtures/style.file.css
  79. +7 βˆ’0 test/fixtures/template.html
  80. +3 βˆ’0 test/fixtures/template.js
  81. +11 βˆ’0 test/helpers/compile.js
  82. +22 βˆ’0 test/helpers/execute.js
  83. +79 βˆ’0 test/helpers/getCompiler.js
  84. +5 βˆ’0 test/helpers/getErrors.js
  85. +10 βˆ’0 test/helpers/getModuleSource.js
  86. +5 βˆ’0 test/helpers/getWarnings.js
  87. +21 βˆ’0 test/helpers/index.js
  88. +27 βˆ’0 test/helpers/normalizeErrors.js
  89. +23 βˆ’0 test/helpers/readAsset.js
  90. +11 βˆ’0 test/helpers/readAssets.js
  91. +85 βˆ’0 test/loader.test.js
  92. +0 βˆ’129 test/loaderTest.js
  93. +114 βˆ’0 test/minimize-option.test.js
  94. +0 βˆ’49 test/parserTest.js
  95. +81 βˆ’0 test/preprocessor-option.test.js
  96. +69 βˆ’0 test/runtime/__snapshots__/getUrl.test.js.snap
  97. +37 βˆ’0 test/runtime/getUrl.test.js
  98. +160 βˆ’0 test/validate-options.test.js
15 changes: 11 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
root = true
# editorconfig.org

[*.js]
indent_style=tab
trim_trailing_whitespace=true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
trim_trailing_whitespace = false
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/coverage
/dist
/node_modules
/test/fixtures
24 changes: 0 additions & 24 deletions .eslintrc

This file was deleted.

4 changes: 4 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
root: true,
extends: ['@webpack-contrib/eslint-config-webpack', 'prettier'],
};
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* text=auto
bin/* eol=lf
yarn.lock -diff
package-lock.json -diff
6 changes: 6 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# These are the default owners for everything in
# webpack-contrib
@webpack-contrib/org-maintainers

# Add repository specific users / groups
# below here for libs that are not maintained by the org.
160 changes: 160 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,160 @@
# Contributing in @webpack-contrib

We'd always love contributions to further improve the webpack / webpack-contrib ecosystem!
Here are the guidelines we'd like you to follow:

- [Questions and Problems](#question)
- [Issues and Bugs](#issue)
- [Feature Requests](#feature)
- [Pull Request Submission Guidelines](#submit-pr)
- [Commit Message Conventions](#commit)

## <a name="question"></a> Got a Question or Problem?

Please submit support requests and questions to StackOverflow using the tag [[webpack]](http://stackoverflow.com/tags/webpack).
StackOverflow is better suited for this kind of support though you may also inquire in [Webpack Gitter](https://gitter.im/webpack/webpack).
The issue tracker is for bug reports and feature discussions.

## <a name="issue"></a> Found an Issue or Bug?

Before you submit an issue, please search the issue tracker, maybe an issue for your problem already exists and the discussion might inform you of workarounds readily available.

We want to fix all the issues as soon as possible, but before fixing a bug we need to reproduce and confirm it. In order to reproduce bugs, we ask that you to provide a minimal reproduction scenario (github repo or failing test case). Having a live, reproducible scenario gives us a wealth of important information without going back & forth to you with additional questions like:

- version of Webpack used
- version of the loader / plugin you are creating a bug report for
- the use-case that fails

A minimal reproduce scenario allows us to quickly confirm a bug (or point out config problems) as well as confirm that we are fixing the right problem.

We will be insisting on a minimal reproduce scenario in order to save maintainers time and ultimately be able to fix more bugs. We understand that sometimes it might be hard to extract essentials bits of code from a larger code-base but we really need to isolate the problem before we can fix it.

Unfortunately, we are not able to investigate / fix bugs without a minimal reproduction, so if we don't hear back from you we are going to close an issue that doesn't have enough info to be reproduced.

## <a name="feature"></a> Feature Requests?

You can _request_ a new feature by creating an issue on Github.

If you would like to _implement_ a new feature, please submit an issue with a proposal for your work `first`, to be sure that particular makes sense for the project.

## <a name="submit-pr"></a> Pull Request Submission Guidelines

Before you submit your Pull Request (PR) consider the following guidelines:

- Search Github for an open or closed PR that relates to your submission. You don't want to duplicate effort.
- Commit your changes using a descriptive commit message that follows our [commit message conventions](#commit). Adherence to these conventions is necessary because release notes are automatically generated from these messages.
- Fill out our `Pull Request Template`. Your pull request will not be considered if it is ignored.
- Please sign the `Contributor License Agreement (CLA)` when a pull request is opened. We cannot accept your pull request without this. Make sure you sign with the primary email address associated with your local / github account.

## <a name="commit"></a> Webpack Contrib Commit Conventions

Each commit message consists of a **header**, a **body** and a **footer**. The header has a special
format that includes a **type**, a **scope** and a **subject**:

```
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
```

The **header** is mandatory and the **scope** of the header is optional.

Any line of the commit message cannot be longer 100 characters! This allows the message to be easier
to read on GitHub as well as in various git tools.

The footer should contain a [closing reference to an issue](https://help.github.com/articles/closing-issues-via-commit-messages/) if any.

Examples:

```
docs(readme): update install instructions
```

```
fix: refer to the `entrypoint` instead of the first `module`
```

### Revert

If the commit reverts a previous commit, it should begin with `revert:`, followed by the header of the reverted commit.
In the body it should say: `This reverts commit <hash>.`, where the hash is the SHA of the commit being reverted.

### Type

Must be one of the following:

- **build**: Changes that affect the build system or external dependencies (example scopes: babel, npm)
- **chore**: Changes that fall outside of build / docs that do not effect source code (example scopes: package, defaults)
- **ci**: Changes to our CI configuration files and scripts (example scopes: circleci, travis)
- **docs**: Documentation only changes (example scopes: readme, changelog)
- **feat**: A new feature
- **fix**: A bug fix
- **perf**: A code change that improves performance
- **refactor**: A code change that neither fixes a bug nor adds a feature
- **revert**: Used when reverting a committed change
- **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons)
- **test**: Addition of or updates to Jest tests

### Scope

The scope is subjective & depends on the `type` see above. A good example would be a change to a particular class / module.

### Subject

The subject contains a succinct description of the change:

- use the imperative, present tense: "change" not "changed" nor "changes"
- don't capitalize the first letter
- no dot (.) at the end

### Body

Just as in the **subject**, use the imperative, present tense: "change" not "changed" nor "changes".
The body should include the motivation for the change and contrast this with previous behavior.

### Footer

The footer should contain any information about **Breaking Changes** and is also the place to
reference GitHub issues that this commit **Closes**.

**Breaking Changes** should start with the word `BREAKING CHANGE:` with a space or two newlines. The rest of the commit message is then used for this.

Example

```
BREAKING CHANGE: Updates to `Chunk.mapModules`.
This release is not backwards compatible with `Webpack 2.x` due to breaking changes in webpack/webpack#4764
Migration: see webpack/webpack#5225
```

## Testing Your Pull Request

You may have the need to test your changes in a real-world project or dependent
module. Thankfully, Github provides a means to do this. Add a dependency to the
`package.json` for such a project as follows:

```json
{
"devDependencies": {
"html-loader": "ryanclark/html-loader#{id}/head"
}
}
```

Where `{id}` is the # ID of your Pull Request.

## Contributor License Agreement

When submitting your contribution, a CLA (Contributor License Agreement) bot will come by to verify that you signed the [CLA](https://cla.js.foundation/ryanclark/html-loader).
If it is your first time, it will link you to the right place to sign it.
However, if you have committed your contributions using an email that is not the same as your email used on GitHub, the CLA bot can't accept your contribution.

Run `git config user.email` to see your Git email, and verify it with [your GitHub email](https://github.com/settings/emails).

## Thanks

For your interest, time, understanding, and for following this simple guide.
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
open_collective: webpack
57 changes: 16 additions & 41 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,16 @@
## **BEFORE YOU SUBMIT** please read the following:
If you have a support request or question please
submit them to [StackOverflow](http://stackoverflow.com/questions/tagged/webpack) using the tag `[webpack]` or the [webpack Gitter](https://gitter.im/webpack/webpack). Future support requests will be closed.
(remove this from issue)



**I'm submitting a bug report**
**I'm submitting a feature request**
**I'm submitting a support request** => Please do not submit support request here, see note at the top of this template.
(remove inappropriate sentences)


**Webpack version:**
1.10.x / 2.x

**HTML-Loader version:**
0.3.x / 0.4.x

**Please tell us about your environment:**
OSX 10.x / Linux / Windows 10


**Current behavior:**


**Expected/desired behavior:**


* **If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem along with a gist/jsbin of your webpack configuration.**


* **What is the expected behavior?**


* **What is the motivation / use case for changing the behavior?**


* **Browser:** [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]

* **Language:** [all | TypeScript X.X | ES6/7 | ES5 | Dart | ...]
<!--
πŸ‘‰πŸ½ Need support, advice, or help? Don't open an issue!
Head to StackOverflow or https://gitter.im/webpack/webpack.
Hey there!
You arrived at this template because you felt none of the other options
matched the kind of issue you'd like to report. Please use this opportunity to
tell us about your particular type of issue so we can try to accomodate
similar issues in the future.
PLEASE do note, if you're using this to report an issue already covered by the
existing template types, your issue may be closed as invalid. Our issue
templates contain fields that help us help you, and without that important
info, we might as well be ice-skating uphill, carrying a wooly mammoth.
-->
50 changes: 50 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
name: πŸ› Bug Report
about: Something went awry and you'd like to tell us about it.
---

<!--
Issues are so πŸ”₯
If you remove or skip this template, you'll make the 🐼 sad and the mighty god
of Github will appear and pile-drive the close button from a great height
while making animal noises.
πŸ‘‰πŸ½ Need support, advice, or help? Don't open an issue!
Head to StackOverflow or https://gitter.im/webpack/webpack.
-->

- Operating System:
- Node Version:
- NPM Version:
- webpack Version:
- html-loader Version:

### Expected Behavior

<!-- Remove this section if not reporting a bug or modification request. -->

### Actual Behavior

<!-- Remove this section if not reporting a bug or modification request. -->

### Code

```js
// webpack.config.js
// If your code blocks are over 20 lines, please paste a link to a gist
// (https://gist.github.com).
```

```js
// additional code, HEY YO remove this block if you don't need it
```

### How Do We Reproduce?

<!--
Remove this section if not reporting a bug.
If your webpack config is over 50 lines long, please provide a URL to a repo
for your beefy πŸ– app that we can use to reproduce.
-->
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/DOCS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: πŸ“š Documentation
about: Are the docs lacking or missing something? Do they need some new πŸ”₯ hotness? Tell us here.
---

<!--
Issues are so πŸ”₯
If you remove or skip this template, you'll make the 🐼 sad and the mighty god
of Github will appear and pile-drive the close button from a great height
while making animal noises.
πŸ‘‰πŸ½ Need support, advice, or help? Don't open an issue!
Head to StackOverflow or https://gitter.im/webpack/webpack.
-->

Documentation Is:

<!-- Please place an x (no spaces!) in all [ ] that apply -->

- [ ] Missing
- [ ] Needed
- [ ] Confusing
- [ ] Not Sure?

### Please Explain in Detail...

### Your Proposal for Changes
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/FEATURE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: ✨ Feature Request
about: Suggest an idea for this project
---

<!--
Issues are so πŸ”₯
If you remove or skip this template, you'll make the 🐼 sad and the mighty god
of Github will appear and pile-drive the close button from a great height
while making animal noises.
πŸ‘‰πŸ½ Need support, advice, or help? Don't open an issue!
Head to StackOverflow or https://gitter.im/webpack/webpack.
-->

- Operating System:
- Node Version:
- NPM Version:
- webpack Version:
- html-loader Version:

### Feature Proposal

### Feature Use Case
Loading