@itwin/ecschema-locaters 4.2.0-dev.25 → 4.2.0-dev.27
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.
|
@@ -3,6 +3,7 @@ export * from "./SchemaJsonFileLocater";
|
|
|
3
3
|
export * from "./SchemaXmlFileLocater";
|
|
4
4
|
export * from "./StubSchemaXmlFileLocater";
|
|
5
5
|
export * from "./SchemaXmlStringLocater";
|
|
6
|
+
export * from "./SchemaFileUtility";
|
|
6
7
|
/** @docs-package-description
|
|
7
8
|
* The ecschema-locaters package contains classes for locating ECSchemas within a given
|
|
8
9
|
* [SchemaContext](https://www.itwinjs.org/reference/ecschema-metadata/context/schemacontext). Each locater
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ecschema-locaters.d.ts","sourceRoot":"","sources":["../../src/ecschema-locaters.ts"],"names":[],"mappings":"AAKA,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;
|
|
1
|
+
{"version":3,"file":"ecschema-locaters.d.ts","sourceRoot":"","sources":["../../src/ecschema-locaters.ts"],"names":[],"mappings":"AAKA,cAAc,qBAAqB,CAAC;AACpC,cAAc,yBAAyB,CAAC;AACxC,cAAc,wBAAwB,CAAC;AACvC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC;AAEpC;;;;GAIG;AACH;;;GAGG;AACH;;;GAGG"}
|
|
@@ -23,6 +23,7 @@ __exportStar(require("./SchemaJsonFileLocater"), exports);
|
|
|
23
23
|
__exportStar(require("./SchemaXmlFileLocater"), exports);
|
|
24
24
|
__exportStar(require("./StubSchemaXmlFileLocater"), exports);
|
|
25
25
|
__exportStar(require("./SchemaXmlStringLocater"), exports);
|
|
26
|
+
__exportStar(require("./SchemaFileUtility"), exports);
|
|
26
27
|
/** @docs-package-description
|
|
27
28
|
* The ecschema-locaters package contains classes for locating ECSchemas within a given
|
|
28
29
|
* [SchemaContext](https://www.itwinjs.org/reference/ecschema-metadata/context/schemacontext). Each locater
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ecschema-locaters.js","sourceRoot":"","sources":["../../src/ecschema-locaters.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;;;;;;;;;;;;;;;;AAE/F,sDAAoC;AACpC,0DAAwC;AACxC,yDAAuC;AACvC,6DAA2C;AAC3C,2DAAyC;
|
|
1
|
+
{"version":3,"file":"ecschema-locaters.js","sourceRoot":"","sources":["../../src/ecschema-locaters.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;;;;;;;;;;;;;;;;AAE/F,sDAAoC;AACpC,0DAAwC;AACxC,yDAAuC;AACvC,6DAA2C;AAC3C,2DAAyC;AACzC,sDAAoC;AAEpC;;;;GAIG;AACH;;;GAGG;AACH;;;GAGG","sourcesContent":["/*---------------------------------------------------------------------------------------------\r\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\r\n* See LICENSE.md in the project root for license terms and full copyright notice.\r\n*--------------------------------------------------------------------------------------------*/\r\n\r\nexport * from \"./SchemaFileLocater\";\r\nexport * from \"./SchemaJsonFileLocater\";\r\nexport * from \"./SchemaXmlFileLocater\";\r\nexport * from \"./StubSchemaXmlFileLocater\";\r\nexport * from \"./SchemaXmlStringLocater\";\r\nexport * from \"./SchemaFileUtility\";\r\n\r\n/** @docs-package-description\r\n * The ecschema-locaters package contains classes for locating ECSchemas within a given\r\n * [SchemaContext](https://www.itwinjs.org/reference/ecschema-metadata/context/schemacontext). Each locater\r\n * implements the [ISchemaLocater interface](https://www.itwinjs.org/reference/ecschema-metadata/context/ischemalocater/).\r\n */\r\n/**\r\n * @docs-group-description Locaters\r\n * ISchemaLocater implementations used to locate schemas in a given [SchemaContext](https://www.itwinjs.org/reference/ecschema-metadata/context/schemacontext).\r\n */\r\n/**\r\n * @docs-group-description Utils\r\n * A set of utility classes used throughout the package.\r\n */\r\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/ecschema-locaters",
|
|
3
|
-
"version": "4.2.0-dev.
|
|
3
|
+
"version": "4.2.0-dev.27",
|
|
4
4
|
"description": "EC Schema file locaters",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "lib/cjs/ecschema-locaters.js",
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
"rimraf": "^3.0.2",
|
|
55
55
|
"sinon": "^15.0.4",
|
|
56
56
|
"typescript": "~5.0.2",
|
|
57
|
-
"@itwin/build-tools": "4.2.0-dev.
|
|
58
|
-
"@itwin/ecschema-metadata": "4.2.0-dev.
|
|
57
|
+
"@itwin/build-tools": "4.2.0-dev.27",
|
|
58
|
+
"@itwin/ecschema-metadata": "4.2.0-dev.27"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"glob": "^7.1.2",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
"@xmldom/xmldom": "~0.8.5"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
66
|
-
"@itwin/ecschema-metadata": "^4.2.0-dev.
|
|
66
|
+
"@itwin/ecschema-metadata": "^4.2.0-dev.27"
|
|
67
67
|
},
|
|
68
68
|
"nyc": {
|
|
69
69
|
"extends": "./node_modules/@itwin/build-tools/.nycrc",
|