mgc 1.2.3 → 1.2.4

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/generate.js CHANGED
@@ -29,7 +29,7 @@ program
29
29
  .command("setup")
30
30
  .description("Run the MGC setup")
31
31
  .action(() => {
32
- const setupPath = path.join(__dirname, "setup.js");
32
+ const setupPath = path.join(__dirname, "setup.cjs");
33
33
  spawnSync(process.execPath, [setupPath], { stdio: "inherit" });
34
34
  });
35
35
 
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "mgc",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "A cli based tool for generating your saved modules",
5
5
  "author": "Admond Tamang",
6
6
  "license": "MIT",
7
7
  "main": "bin/generate",
8
8
  "bin": {
9
9
  "mgc": "bin/generate.js",
10
- "mgc-setup": "bin/setup.js"
10
+ "mgc-setup": "bin/setup.cjs"
11
11
  },
12
12
  "repository": {
13
13
  "type": "git",
File without changes