@quantform/core 0.7.25 → 0.7.26

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 +1 @@
1
- {"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../src/cli/build.ts"],"names":[],"mappings":"AAIA,4BAAkC,OAAO,CAAC,MAAM,CAAC,CAehD"}
1
+ {"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../src/cli/build.ts"],"names":[],"mappings":"AAIA,4BAAkC,OAAO,CAAC,MAAM,CAAC,CAchD"}
package/lib/cli/build.js CHANGED
@@ -6,8 +6,7 @@ async function default_1() {
6
6
  return new Promise((resolve, reject) => {
7
7
  const child = (0, child_process_1.spawn)('tsc', ['--project', 'tsconfig.json', '--outDir', (0, workspace_1.buildDirectory)()], {
8
8
  cwd: process.cwd(),
9
- stdio: 'inherit',
10
- shell: true
9
+ stdio: 'inherit'
11
10
  });
12
11
  child.once('exit', resolve);
13
12
  child.once('error', reject);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quantform/core",
3
- "version": "0.7.25",
3
+ "version": "0.7.26",
4
4
  "license": "MIT",
5
5
  "author": "Mateusz Majchrzak",
6
6
  "description": "Node.js library for building systematic trading strategies in reactive way.",
package/src/cli/build.ts CHANGED
@@ -9,8 +9,7 @@ export default async function (): Promise<number> {
9
9
  ['--project', 'tsconfig.json', '--outDir', buildDirectory()],
10
10
  {
11
11
  cwd: process.cwd(),
12
- stdio: 'inherit',
13
- shell: true
12
+ stdio: 'inherit'
14
13
  }
15
14
  );
16
15