@itwin/core-frontend 4.6.0-dev.15 → 4.6.0-dev.16

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.
@@ -1,4 +1,3 @@
1
-
2
1
  /*---------------------------------------------------------------------------------------------
3
2
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
4
3
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -6,14 +5,17 @@
6
5
 
7
6
  const path = require("path");
8
7
  // const webpack = require("webpack");
9
- const glob = require("glob");
8
+ const { globSync } = require("glob");
10
9
 
11
10
  const frontendLib = path.resolve(__dirname, "../../../lib");
12
11
 
13
12
  module.exports = [{
14
13
  // stats: "verbose",
15
14
  mode: "production",
16
- entry: glob.sync(path.resolve(frontendLib, "esm/workers/ImdlParser/Worker.js")),
15
+ entry: globSync(
16
+ path.resolve(frontendLib, "esm/workers/ImdlParser/Worker.js"),
17
+ { windowsPathsNoEscape: true }
18
+ ),
17
19
  output: {
18
20
  path: path.resolve(frontendLib, "workers/webpack/"),
19
21
  filename: "parse-imdl-worker.js",
@@ -1,4 +1,3 @@
1
-
2
1
  /*---------------------------------------------------------------------------------------------
3
2
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
4
3
  * See LICENSE.md in the project root for license terms and full copyright notice.
@@ -6,14 +5,17 @@
6
5
 
7
6
  const path = require("path");
8
7
  // const webpack = require("webpack");
9
- const glob = require("glob");
8
+ const { globSync } = require("glob");
10
9
 
11
10
  const frontendLib = path.resolve(__dirname, "../../../lib");
12
11
 
13
12
  module.exports = [{
14
13
  // stats: "verbose",
15
14
  mode: "production",
16
- entry: glob.sync(path.resolve(frontendLib, "esm/workers/ImdlParser/Worker.js")),
15
+ entry: globSync(
16
+ path.resolve(frontendLib, "esm/workers/ImdlParser/Worker.js"),
17
+ { windowsPathsNoEscape: true }
18
+ ),
17
19
  output: {
18
20
  path: path.resolve(frontendLib, "workers/webpack/"),
19
21
  filename: "parse-imdl-worker.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/core-frontend",
3
- "version": "4.6.0-dev.15",
3
+ "version": "4.6.0-dev.16",
4
4
  "description": "iTwin.js frontend components",
5
5
  "main": "lib/cjs/core-frontend.js",
6
6
  "module": "lib/esm/core-frontend.js",
@@ -23,12 +23,12 @@
23
23
  "url": "http://www.bentley.com"
24
24
  },
25
25
  "peerDependencies": {
26
- "@itwin/appui-abstract": "^4.6.0-dev.15",
27
- "@itwin/core-bentley": "^4.6.0-dev.15",
28
- "@itwin/core-common": "^4.6.0-dev.15",
29
- "@itwin/core-geometry": "^4.6.0-dev.15",
30
- "@itwin/core-orbitgt": "^4.6.0-dev.15",
31
- "@itwin/core-quantity": "^4.6.0-dev.15"
26
+ "@itwin/appui-abstract": "^4.6.0-dev.16",
27
+ "@itwin/core-bentley": "^4.6.0-dev.16",
28
+ "@itwin/core-common": "^4.6.0-dev.16",
29
+ "@itwin/core-geometry": "^4.6.0-dev.16",
30
+ "@itwin/core-orbitgt": "^4.6.0-dev.16",
31
+ "@itwin/core-quantity": "^4.6.0-dev.16"
32
32
  },
33
33
  "//devDependencies": [
34
34
  "NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install",
@@ -46,7 +46,7 @@
46
46
  "chai-as-promised": "^7.1.1",
47
47
  "cpx2": "^3.0.0",
48
48
  "eslint": "^8.44.0",
49
- "glob": "^7.1.2",
49
+ "glob": "^10.3.12",
50
50
  "mocha": "^10.2.0",
51
51
  "nyc": "^15.1.0",
52
52
  "rimraf": "^3.0.2",
@@ -55,14 +55,14 @@
55
55
  "typescript": "~5.0.2",
56
56
  "typemoq": "^2.1.0",
57
57
  "webpack": "^5.76.0",
58
- "@itwin/core-geometry": "4.6.0-dev.15",
59
- "@itwin/appui-abstract": "4.6.0-dev.15",
60
- "@itwin/core-common": "4.6.0-dev.15",
61
- "@itwin/build-tools": "4.6.0-dev.15",
62
- "@itwin/core-bentley": "4.6.0-dev.15",
63
- "@itwin/core-orbitgt": "4.6.0-dev.15",
64
- "@itwin/core-quantity": "4.6.0-dev.15",
65
- "@itwin/certa": "4.6.0-dev.15"
58
+ "@itwin/appui-abstract": "4.6.0-dev.16",
59
+ "@itwin/build-tools": "4.6.0-dev.16",
60
+ "@itwin/core-orbitgt": "4.6.0-dev.16",
61
+ "@itwin/core-common": "4.6.0-dev.16",
62
+ "@itwin/core-bentley": "4.6.0-dev.16",
63
+ "@itwin/core-geometry": "4.6.0-dev.16",
64
+ "@itwin/core-quantity": "4.6.0-dev.16",
65
+ "@itwin/certa": "4.6.0-dev.16"
66
66
  },
67
67
  "//dependencies": [
68
68
  "NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API",
@@ -76,9 +76,9 @@
76
76
  "fuse.js": "^3.3.0",
77
77
  "meshoptimizer": "~0.20.0",
78
78
  "wms-capabilities": "0.4.0",
79
- "@itwin/webgl-compatibility": "4.6.0-dev.15",
80
- "@itwin/core-i18n": "4.6.0-dev.15",
81
- "@itwin/core-telemetry": "4.6.0-dev.15"
79
+ "@itwin/core-i18n": "4.6.0-dev.16",
80
+ "@itwin/webgl-compatibility": "4.6.0-dev.16",
81
+ "@itwin/core-telemetry": "4.6.0-dev.16"
82
82
  },
83
83
  "nyc": {
84
84
  "extends": "./node_modules/@itwin/build-tools/.nycrc"