@itwin/ecsql-common 5.0.0-dev.9 → 5.0.0-dev.90
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 +51 -1
- package/lib/cjs/ECSqlAst.js +188 -70
- package/lib/cjs/ECSqlAst.js.map +1 -1
- package/lib/esm/ECSqlAst.js +188 -70
- package/lib/esm/ECSqlAst.js.map +1 -1
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/ecsql-common",
|
|
3
|
-
"version": "5.0.0-dev.
|
|
3
|
+
"version": "5.0.0-dev.90",
|
|
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,7 +24,7 @@
|
|
|
24
24
|
"url": "http://www.bentley.com"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@itwin/core-bentley": "5.0.0-dev.
|
|
27
|
+
"@itwin/core-bentley": "5.0.0-dev.90"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@itwin/eslint-plugin": "5.0.0-dev.1",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@types/mocha": "^10.0.6",
|
|
33
33
|
"chai": "^4.3.10",
|
|
34
34
|
"eslint": "^9.13.0",
|
|
35
|
-
"mocha": "^
|
|
36
|
-
"nyc": "^
|
|
37
|
-
"rimraf": "^
|
|
35
|
+
"mocha": "^11.1.0",
|
|
36
|
+
"nyc": "^17.1.0",
|
|
37
|
+
"rimraf": "^6.0.1",
|
|
38
38
|
"typescript": "~5.6.2",
|
|
39
|
-
"@itwin/
|
|
40
|
-
"@itwin/
|
|
39
|
+
"@itwin/build-tools": "5.0.0-dev.90",
|
|
40
|
+
"@itwin/core-bentley": "5.0.0-dev.90"
|
|
41
41
|
},
|
|
42
42
|
"nyc": {
|
|
43
43
|
"extends": "./node_modules/@itwin/build-tools/.nycrc",
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"scripts": {
|
|
47
47
|
"build": "npm run -s build:cjs && npm run -s build:esm",
|
|
48
48
|
"build:cjs": "tsc 1>&2 --outDir lib/cjs",
|
|
49
|
-
"build:esm": "tsc 1>&2 --module
|
|
50
|
-
"clean": "rimraf lib .rush/temp/package-deps*.json",
|
|
49
|
+
"build:esm": "tsc 1>&2 --module ES2022 --outDir lib/esm",
|
|
50
|
+
"clean": "rimraf -g lib .rush/temp/package-deps*.json",
|
|
51
51
|
"docs": "betools docs --json=../../../generated-docs/core/ecsql-common/file.json --tsIndexFile=./ecsql-common.ts --onlyJson",
|
|
52
52
|
"extract-api": "betools extract-api --entry=ecsql-common",
|
|
53
53
|
"lint": "eslint \"./src/**/*.ts\" 1>&2",
|