@itwin/ecsql-common 4.3.0-dev.8 → 4.4.0-dev.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/package.json +5 -6
package/CHANGELOG.md ADDED
@@ -0,0 +1,31 @@
1
+ # Change Log - @itwin/ecsql-common
2
+
3
+ This log was last generated on Thu, 30 Nov 2023 17:07:27 GMT and should not be manually modified.
4
+
5
+ ## 4.2.4
6
+ Mon, 20 Nov 2023 16:14:45 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 4.2.3
11
+ Mon, 06 Nov 2023 14:01:52 GMT
12
+
13
+ _Version update only_
14
+
15
+ ## 4.2.2
16
+ Thu, 02 Nov 2023 15:36:21 GMT
17
+
18
+ _Version update only_
19
+
20
+ ## 4.2.1
21
+ Tue, 24 Oct 2023 15:09:13 GMT
22
+
23
+ _Version update only_
24
+
25
+ ## 4.2.0
26
+ Tue, 17 Oct 2023 15:14:32 GMT
27
+
28
+ ### Updates
29
+
30
+ - Add support for ECSQL Ast
31
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/ecsql-common",
3
- "version": "4.3.0-dev.8",
3
+ "version": "4.4.0-dev.1",
4
4
  "description": "ECSql component that can be reference on backend and frontend",
5
5
  "main": "lib/cjs/ecsql-common.js",
6
6
  "module": "lib/esm/ecsql-common.js",
@@ -24,20 +24,19 @@
24
24
  "url": "http://www.bentley.com"
25
25
  },
26
26
  "dependencies": {
27
- "@itwin/core-bentley": "4.3.0-dev.8"
27
+ "@itwin/core-bentley": "4.4.0-dev.1"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/chai": "4.3.1",
31
31
  "@types/mocha": "^8.2.2",
32
- "@types/node": "18.16.1",
33
32
  "chai": "^4.3.10",
34
33
  "eslint": "^8.44.0",
35
34
  "mocha": "^10.0.0",
36
35
  "nyc": "^15.1.0",
37
36
  "rimraf": "^3.0.2",
38
37
  "typescript": "~5.0.2",
39
- "@itwin/build-tools": "4.3.0-dev.8",
40
- "@itwin/core-bentley": "4.3.0-dev.8"
38
+ "@itwin/build-tools": "4.4.0-dev.1",
39
+ "@itwin/core-bentley": "4.4.0-dev.1"
41
40
  },
42
41
  "nyc": {
43
42
  "extends": "./node_modules/@itwin/build-tools/.nycrc",
@@ -48,7 +47,7 @@
48
47
  "build:cjs": "tsc 1>&2 --outDir lib/cjs",
49
48
  "build:esm": "tsc 1>&2 --module ES2020 --outDir lib/esm",
50
49
  "clean": "rimraf lib .rush/temp/package-deps*.json",
51
- "docs": "betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/ecsql-common/file.json --tsIndexFile=./ecsql-common.ts --onlyJson",
50
+ "docs": "betools docs --includes=../../../generated-docs/extract --json=../../../generated-docs/core/ecsql-common/file.json --tsIndexFile=./ecsql-common.ts --onlyJson",
52
51
  "extract-api": "betools extract-api --entry=ecsql-common",
53
52
  "lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
54
53
  "test": "mocha",