repository-provider 32.6.10 → 32.6.11
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 +2 -2
- package/src/attribute-extras.mjs +1 -0
- package/src/repository.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider",
|
|
3
|
-
"version": "32.6.
|
|
3
|
+
"version": "32.6.11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"docs": "documentation readme --section=API ./src/**/*.mjs",
|
|
28
28
|
"lint": "npm run lint:docs && npm run lint:tsc",
|
|
29
29
|
"lint:docs": "documentation lint ./src/**/*.mjs",
|
|
30
|
-
"lint:tsc": "tsc --allowJs --checkJs --noEmit -t esnext -m esnext ./src/*.mjs"
|
|
30
|
+
"lint:tsc": "tsc --allowJs --checkJs --noEmit -t esnext -m esnext --moduleResolution nodenext ./src/*.mjs"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"matching-iterator": "^2.0.11"
|
package/src/attribute-extras.mjs
CHANGED
|
@@ -7,6 +7,7 @@ import { setAttribute, getAttribute } from "./attribute.mjs";
|
|
|
7
7
|
* @property {boolean} writable
|
|
8
8
|
* @property {boolean} [private] should the value be shown
|
|
9
9
|
* @property {string} [depends] name of an attribute we depend on
|
|
10
|
+
* @property {string[]} additionalAttributes extra attributes that are present in cas our attribute is set
|
|
10
11
|
* @property {string} description
|
|
11
12
|
* @property {any} [default] the default value
|
|
12
13
|
* @property {Function} [set] set the value
|