@esportsplus/typescript 0.8.6 → 0.8.7

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/bin/tsc CHANGED
@@ -1,10 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const { spawn } = require('child_process');
4
- const path = require('path');
5
-
6
- spawn(
7
- path.join(__dirname, '../node_modules/.bin/tsc'),
3
+ require('child_process').spawn(
4
+ require('path').join(__dirname, '../node_modules/.bin/tsc'),
8
5
  process.argv.slice(2),
9
6
  { shell: true, stdio: 'inherit' }
10
7
  );
package/bin/tsc-alias CHANGED
@@ -1,10 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
- const { spawn } = require('child_process');
4
- const path = require('path');
5
-
6
- spawn(
7
- path.join(__dirname, '../node_modules/.bin/tsc-alias'),
3
+ require('child_process').spawn(
4
+ require('path').join(__dirname, '../node_modules/.bin/tsc-alias'),
8
5
  process.argv.slice(2),
9
6
  { shell: true, stdio: 'inherit' }
10
7
  );
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "prepublishOnly": "npm run build"
29
29
  },
30
30
  "types": "build/index.d.ts",
31
- "version": "0.8.6"
31
+ "version": "0.8.7"
32
32
  }