@itwin/certa 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.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -195,12 +195,12 @@ Here's an example webpack config that you can use to bundle your tests:
195
195
 
196
196
  ```JavaScript
197
197
  const path = require("path");
198
- const glob = require("glob");
198
+ const { globSync } = require("glob");
199
199
 
200
200
  function createConfig(shouldInstrument) {
201
201
  const config = {
202
202
  mode: "development",
203
- entry: glob.sync(path.resolve(__dirname, "lib/**/*.test.js")),
203
+ entry: globSync(path.resolve(__dirname, "lib/**/*.test.js"), { windowsPathsNoEscape: true }),
204
204
  output: {
205
205
  path: path.resolve(__dirname, "lib/dist"),
206
206
  filename: "bundled-tests.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@itwin/certa",
3
- "version": "4.6.0-dev.15",
3
+ "version": "4.6.0-dev.16",
4
4
  "description": "A mocha-based integration test runner",
5
5
  "license": "MIT",
6
6
  "main": "bin/certa.js",
@@ -47,7 +47,7 @@
47
47
  "nyc": "^15.1.0",
48
48
  "rimraf": "^3.0.2",
49
49
  "typescript": "~5.0.2",
50
- "@itwin/build-tools": "4.6.0-dev.15"
50
+ "@itwin/build-tools": "4.6.0-dev.16"
51
51
  },
52
52
  "peerDependencies": {
53
53
  "electron": ">=23.0.0 <31.0.0"