sphinx.djs 1.0.5 → 1.0.6

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/cli.js +1 -4
  2. package/package.json +2 -2
package/bin/cli.js CHANGED
@@ -29,16 +29,13 @@ choose.question('Please enter a package name : ', answer => {
29
29
  })
30
30
 
31
31
  const willBeRunned = someCommand => {
32
-
33
32
  try {
34
- execSync(someCommand);
35
-
33
+ execSync(someCommand);
36
34
  } catch(e) {
37
35
  console.log(e);
38
36
  return false;
39
37
  }
40
38
  return true;
41
-
42
39
  }
43
40
 
44
41
  function runningAll(name) {
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "sphinx.djs",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "This package was made to annoy users in discord, Made it because people kept asking for it.",
5
5
  "main": "inedx.js",
6
6
  "bin": {
7
- "sphinx-bc": "bin/cli.js"
7
+ "sphinx.djs": "bin/cli.js"
8
8
  },
9
9
  "scripts": {
10
10
  "test": "echo \"Error: no test specified\" && exit 1"