@itwin/components-react 3.0.0-dev.91 → 3.0.0-dev.92
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 +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itwin/components-react",
|
|
3
|
-
"version": "3.0.0-dev.
|
|
3
|
+
"version": "3.0.0-dev.92",
|
|
4
4
|
"description": "iModel.js UI complex components",
|
|
5
5
|
"main": "lib/cjs/components-react.js",
|
|
6
6
|
"module": "lib/esm/components-react.js",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"url": "http://www.bentley.com"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
|
-
"@itwin/core-bentley": "^3.0.0-dev.
|
|
25
|
-
"@itwin/core-i18n": "^3.0.0-dev.
|
|
26
|
-
"@itwin/appui-abstract": "^3.0.0-dev.
|
|
27
|
-
"@itwin/core-react": "^3.0.0-dev.
|
|
24
|
+
"@itwin/core-bentley": "^3.0.0-dev.92",
|
|
25
|
+
"@itwin/core-i18n": "^3.0.0-dev.92",
|
|
26
|
+
"@itwin/appui-abstract": "^3.0.0-dev.92",
|
|
27
|
+
"@itwin/core-react": "^3.0.0-dev.92",
|
|
28
28
|
"react": "^17.0.0",
|
|
29
29
|
"react-dom": "^17.0.0"
|
|
30
30
|
},
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"NOTE: All tools used by scripts in this package must be listed as devDependencies"
|
|
34
34
|
],
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@itwin/core-bentley": "3.0.0-dev.
|
|
37
|
-
"@itwin/core-common": "3.0.0-dev.
|
|
38
|
-
"@itwin/build-tools": "3.0.0-dev.
|
|
39
|
-
"@itwin/eslint-plugin": "3.0.0-dev.
|
|
40
|
-
"@itwin/core-i18n": "3.0.0-dev.
|
|
41
|
-
"@itwin/appui-abstract": "3.0.0-dev.
|
|
42
|
-
"@itwin/core-react": "3.0.0-dev.
|
|
36
|
+
"@itwin/core-bentley": "3.0.0-dev.92",
|
|
37
|
+
"@itwin/core-common": "3.0.0-dev.92",
|
|
38
|
+
"@itwin/build-tools": "3.0.0-dev.92",
|
|
39
|
+
"@itwin/eslint-plugin": "3.0.0-dev.92",
|
|
40
|
+
"@itwin/core-i18n": "3.0.0-dev.92",
|
|
41
|
+
"@itwin/appui-abstract": "3.0.0-dev.92",
|
|
42
|
+
"@itwin/core-react": "3.0.0-dev.92",
|
|
43
43
|
"@testing-library/react": "^12.0.0",
|
|
44
44
|
"@testing-library/react-hooks": "^3.2.1",
|
|
45
45
|
"@testing-library/user-event": "^13.2.1",
|
|
@@ -145,14 +145,14 @@
|
|
|
145
145
|
]
|
|
146
146
|
},
|
|
147
147
|
"scripts": {
|
|
148
|
-
"
|
|
148
|
+
"build": "npm run -s copy:locale && npm run -s build:cjs",
|
|
149
|
+
"build:ci": "npm run -s build && npm run -s build:esm",
|
|
150
|
+
"build:cjs": "tsc 1>&2 --outDir lib/cjs && npm run -s copy:cjs",
|
|
151
|
+
"build:esm": "tsc 1>&2 --module ES2020 --outDir lib/esm && npm run -s copy:esm",
|
|
149
152
|
"copy:cjs": "cpx \"./src/**/*.*css\" ./lib/cjs",
|
|
150
153
|
"copy:esm": "cpx \"./src/**/*.*css\" ./lib/esm",
|
|
151
|
-
"pseudolocalize": "betools pseudolocalize --englishDir ./public/locales/en --out ./public/locales/en-PSEUDO",
|
|
152
154
|
"copy:locale": "cpx \"./public/**/*\" ./lib/public",
|
|
153
|
-
"
|
|
154
|
-
"build:cjs": "tsc 1>&2 --outDir lib/cjs && npm run -s copy:cjs",
|
|
155
|
-
"build:esm": "tsc 1>&2 --module ES2020 --outDir lib/esm && npm run -s copy:esm",
|
|
155
|
+
"pseudolocalize": "betools pseudolocalize --englishDir ./public/locales/en --out ./public/locales/en-PSEUDO",
|
|
156
156
|
"clean": "rimraf lib .rush/temp/package-deps*.json",
|
|
157
157
|
"cover": "nyc npm -s test",
|
|
158
158
|
"docs": "betools docs --includes=../../generated-docs/extract --json=../../generated-docs/ui/components-react/file.json --tsIndexFile=./components-react.ts --onlyJson",
|