content-entry-transform 1.3.13 → 1.3.16
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/README.md +1 -1
- package/package.json +4 -4
- package/src/properties-transformer.mjs +1 -1
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ transform content entries
|
|
|
27
27
|
## createPropertiesTransformer
|
|
28
28
|
|
|
29
29
|
Creates a new transformer.
|
|
30
|
-
On match the enrtry will be assigned
|
|
30
|
+
On match the enrtry will be assigned new properties as given by propertyDefinitions.
|
|
31
31
|
|
|
32
32
|
### Parameters
|
|
33
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "content-entry-transform",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"content-entry": "^4.1.
|
|
29
|
-
"iterable-string-interceptor": "^1.0.
|
|
28
|
+
"content-entry": "^4.1.9",
|
|
29
|
+
"iterable-string-interceptor": "^1.0.15"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"ava": "^4.0
|
|
32
|
+
"ava": "^4.1.0",
|
|
33
33
|
"c8": "^7.11.0",
|
|
34
34
|
"documentation": "^13.2.5",
|
|
35
35
|
"semantic-release": "^19.0.2"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Creates a new transformer.
|
|
3
|
-
* On match the enrtry will be assigned
|
|
3
|
+
* On match the enrtry will be assigned new properties as given by propertyDefinitions.
|
|
4
4
|
* @param {Object} propertyDefinitions
|
|
5
5
|
* @param {Matcher} matcher
|
|
6
6
|
* @return {Transformer}
|