@atlaspack/transformer-html 2.14.19 → 2.14.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/package.json +3 -3
- package/src/HTMLTransformer.js +2 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# @atlaspack/transformer-html
|
2
2
|
|
3
|
+
## 2.14.20
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#702](https://github.com/atlassian-labs/atlaspack/pull/702) [`daaa768`](https://github.com/atlassian-labs/atlaspack/commit/daaa7688786772d7e3713b71c5bba6b89ec704aa) Thanks [@alshdavid](https://github.com/alshdavid)! - Fixes to Flow types
|
8
|
+
|
9
|
+
- Updated dependencies [[`daaa768`](https://github.com/atlassian-labs/atlaspack/commit/daaa7688786772d7e3713b71c5bba6b89ec704aa)]:
|
10
|
+
- @atlaspack/plugin@2.14.20
|
11
|
+
|
3
12
|
## 2.14.19
|
4
13
|
|
5
14
|
### Patch Changes
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atlaspack/transformer-html",
|
3
|
-
"version": "2.14.
|
3
|
+
"version": "2.14.20",
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
5
5
|
"publishConfig": {
|
6
6
|
"access": "public"
|
@@ -19,7 +19,7 @@
|
|
19
19
|
},
|
20
20
|
"dependencies": {
|
21
21
|
"@atlaspack/diagnostic": "2.14.1",
|
22
|
-
"@atlaspack/plugin": "2.14.
|
22
|
+
"@atlaspack/plugin": "2.14.20",
|
23
23
|
"@atlaspack/rust": "3.4.1",
|
24
24
|
"nullthrows": "^1.1.1",
|
25
25
|
"posthtml": "^0.16.5",
|
@@ -29,7 +29,7 @@
|
|
29
29
|
"srcset": "4"
|
30
30
|
},
|
31
31
|
"devDependencies": {
|
32
|
-
"@atlaspack/core": "2.19.
|
32
|
+
"@atlaspack/core": "2.19.2"
|
33
33
|
},
|
34
34
|
"type": "commonjs"
|
35
35
|
}
|
package/src/HTMLTransformer.js
CHANGED
@@ -113,7 +113,8 @@ export const transformerOpts: TransformerOpts<void> = {
|
|
113
113
|
};
|
114
114
|
},
|
115
115
|
};
|
116
|
-
|
116
|
+
|
117
|
+
export default (new Transformer(transformerOpts): Transformer<void>);
|
117
118
|
|
118
119
|
function findFirstMatch(
|
119
120
|
ast: AST,
|