@atlaspack/transformer-posthtml 2.12.1-dev.3443 → 2.12.1-dev.3478

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/transformer-posthtml",
3
- "version": "2.12.1-dev.3443+d1170cfc7",
3
+ "version": "2.12.1-dev.3478+5fd2da535",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -13,16 +13,16 @@
13
13
  "source": "src/PostHTMLTransformer.js",
14
14
  "engines": {
15
15
  "node": ">= 16.0.0",
16
- "parcel": "^2.12.1-dev.3443+d1170cfc7"
16
+ "parcel": "^2.12.1-dev.3478+5fd2da535"
17
17
  },
18
18
  "dependencies": {
19
- "@atlaspack/plugin": "2.12.1-dev.3443+d1170cfc7",
20
- "@atlaspack/utils": "2.12.1-dev.3443+d1170cfc7",
19
+ "@atlaspack/plugin": "2.12.1-dev.3478+5fd2da535",
20
+ "@atlaspack/utils": "2.12.1-dev.3478+5fd2da535",
21
21
  "nullthrows": "^1.1.1",
22
22
  "posthtml": "^0.16.5",
23
23
  "posthtml-parser": "^0.10.1",
24
24
  "posthtml-render": "^3.0.0",
25
25
  "semver": "^7.5.2"
26
26
  },
27
- "gitHead": "d1170cfc79beb290b2a066f472f68f71f7d7cb23"
27
+ "gitHead": "5fd2da535ecbe096d57e03aec15e80bb1d7601f7"
28
28
  }
@@ -11,7 +11,7 @@ export default async function loadExternalPlugins(
11
11
  if (Array.isArray(plugins)) {
12
12
  return Promise.all(
13
13
  plugins
14
- .map(p =>
14
+ .map((p) =>
15
15
  loadPlugin(
16
16
  p,
17
17
  relative,
@@ -25,7 +25,7 @@ export default async function loadExternalPlugins(
25
25
  } else if (typeof plugins === 'object') {
26
26
  let _plugins = plugins;
27
27
  let mapPlugins = await Promise.all(
28
- Object.keys(plugins).map(p =>
28
+ Object.keys(plugins).map((p) =>
29
29
  loadPlugin(
30
30
  p,
31
31
  relative,