vaderjs 2.0.8 → 2.0.9

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/main.js +1 -1
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -18,7 +18,7 @@ if (platform() === 'win32') {
18
18
  async function checkIfBunInstalled(){
19
19
  return new Promise((resolve, reject) => {
20
20
  // dont log spawn output
21
- const install = spawn('bash', ['-c', 'curl -fsSL https://bun.sh/install | bash && export PATH=$HOME/.bun/bin:$PATH'], {
21
+ const install = spawn('bash', [ 'curl -fsSL https://bun.sh/install | bash && export PATH=$HOME/.bun/bin:$PATH'], {
22
22
  stdio: 'ignore',
23
23
  shell: true, // Allows running shell commands
24
24
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vaderjs",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "A simple and powerful JavaScript library for building modern web applications.",
5
5
  "bin": {
6
6
  "vaderjs": "./main.js"