@adobe/helix-shared-config 10.6.1 → 10.6.3

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 CHANGED
@@ -1,3 +1,17 @@
1
+ # [@adobe/helix-shared-config-v10.6.3](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v10.6.2...@adobe/helix-shared-config-v10.6.3) (2024-07-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([4b1e61a](https://github.com/adobe/helix-shared/commit/4b1e61abba7d26500bc24d8579e8eb7544a60288))
7
+
8
+ # [@adobe/helix-shared-config-v10.6.2](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v10.6.1...@adobe/helix-shared-config-v10.6.2) (2024-07-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * export index and sitemap schemas ([#965](https://github.com/adobe/helix-shared/issues/965)) ([4a965e5](https://github.com/adobe/helix-shared/commit/4a965e5ceb7767d92de2dda94776ae84755160df))
14
+
1
15
  # [@adobe/helix-shared-config-v10.6.1](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v10.6.0...@adobe/helix-shared-config-v10.6.1) (2024-06-29)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-shared-config",
3
- "version": "10.6.1",
3
+ "version": "10.6.3",
4
4
  "description": "Shared modules of the Helix Project - config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -45,7 +45,7 @@
45
45
  "cookie": "0.6.0",
46
46
  "fs-extra": "11.2.0",
47
47
  "ignore": "5.3.1",
48
- "lru-cache": "10.3.0",
48
+ "lru-cache": "10.3.1",
49
49
  "object-hash": "3.0.0",
50
50
  "uri-js": "4.4.1",
51
51
  "yaml": "2.4.5"
package/src/index.js CHANGED
@@ -9,6 +9,14 @@
9
9
  * OF ANY KIND, either express or implied. See the License for the specific language
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
+ import indexSchema from './schemas/index.schema.cjs';
13
+ import indexConfigSchema from './schemas/indexconfig.schema.cjs';
14
+ import propertySchema from './schemas/property.schema.cjs';
15
+ import querySchema from './schemas/query.schema.cjs';
16
+ import sitemapLanguageSchema from './schemas/sitemap-language.schema.cjs';
17
+ import sitemapSchema from './schemas/sitemap.schema.cjs';
18
+ import sitemapConfigSchema from './schemas/sitemapconfig.schema.cjs';
19
+
12
20
  export { IndexConfig } from './IndexConfig.js';
13
21
  export { MountConfig } from './MountConfig.js';
14
22
  export { optionalConfig, requiredConfig } from './config-wrapper.js';
@@ -17,3 +25,13 @@ export { ValidationError } from './ValidationError.js';
17
25
  export { IgnoreConfig } from './IgnoreConfig.js';
18
26
  export { SitemapConfig } from './SitemapConfig.js';
19
27
  export { ModifiersConfig } from './ModifiersConfig.js';
28
+
29
+ export const SCHEMAS = [
30
+ indexSchema,
31
+ indexConfigSchema,
32
+ propertySchema,
33
+ querySchema,
34
+ sitemapLanguageSchema,
35
+ sitemapSchema,
36
+ sitemapConfigSchema,
37
+ ];