vanilla-jet 1.3.0 → 1.3.1

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/bin.js +4 -4
  2. package/package.json +1 -1
package/bin.js CHANGED
@@ -15,7 +15,7 @@ switch (args[0]) {
15
15
 
16
16
  case 'dev':
17
17
  try {
18
- execSync('gulp dev --env development', { stdio: 'inherit', cwd: __dirname });
18
+ execSync('npx gulp dev --env development', { stdio: 'inherit', cwd: __dirname });
19
19
  } catch (error) {
20
20
  console.error('Error ejecutando gulp:', error.message);
21
21
  }
@@ -23,7 +23,7 @@ switch (args[0]) {
23
23
 
24
24
  case 'build:qa':
25
25
  try {
26
- execSync('gulp build --env qa', { stdio: 'inherit', cwd: __dirname });
26
+ execSync('npx gulp build --env qa', { stdio: 'inherit', cwd: __dirname });
27
27
  } catch (error) {
28
28
  console.error('Error ejecutando gulp:', error.message);
29
29
  }
@@ -31,7 +31,7 @@ switch (args[0]) {
31
31
 
32
32
  case 'build:staging':
33
33
  try {
34
- execSync('gulp build --env staging', { stdio: 'inherit', cwd: __dirname });
34
+ execSync('npx gulp build --env staging', { stdio: 'inherit', cwd: __dirname });
35
35
  } catch (error) {
36
36
  console.error('Error ejecutando gulp:', error.message);
37
37
  }
@@ -39,7 +39,7 @@ switch (args[0]) {
39
39
 
40
40
  case 'build:prod':
41
41
  try {
42
- execSync('gulp build --env production', { stdio: 'inherit', cwd: __dirname });
42
+ execSync('npx gulp build --env production', { stdio: 'inherit', cwd: __dirname });
43
43
  } catch (error) {
44
44
  console.error('Error ejecutando gulp:', error.message);
45
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vanilla-jet",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "VannilaJet framework",
5
5
  "main": "index.js",
6
6
  "bin": {