@applitools/core 2.3.10 → 2.3.11

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 CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 2.3.11 - 2023/3/6
6
+
7
+ ### Features
8
+ ### Bug fixes
9
+ - setting the universal cli for javascript right
10
+
5
11
  ## 2.3.10 - 2023/3/3
6
12
 
7
13
  ### Features
@@ -8,7 +8,7 @@ const child_process_1 = require("child_process");
8
8
  const path_1 = __importDefault(require("path"));
9
9
  function makeCoreServerProcess(options) {
10
10
  return new Promise((resolve, reject) => {
11
- const server = (0, child_process_1.fork)(path_1.default.resolve(__dirname, '../../dist/cli.js'), [`--config=${JSON.stringify(options)}`], {
11
+ const server = (0, child_process_1.fork)(path_1.default.resolve(__dirname, '../../dist/cli/cli.js'), ['universal', `--config=${JSON.stringify(options)}`], {
12
12
  stdio: [options.shutdownMode === 'stdin' ? 'inherit' : 'ignore', 'ignore', 'ignore', 'ipc'],
13
13
  ...options.forkOptions,
14
14
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applitools/core",
3
- "version": "2.3.10",
3
+ "version": "2.3.11",
4
4
  "homepage": "https://applitools.com",
5
5
  "bugs": {
6
6
  "url": "https://github.com/applitools/eyes.sdk.javascript1/issues"