notion-github 0.1.10 → 0.1.12
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/dist/cli.js +27 -12
- package/package.json +1 -1
package/dist/cli.js
CHANGED
@@ -2789,7 +2789,7 @@ var {
|
|
2789
2789
|
} = import_index.default;
|
2790
2790
|
|
2791
2791
|
// package.json
|
2792
|
-
var version = "0.1.
|
2792
|
+
var version = "0.1.12";
|
2793
2793
|
|
2794
2794
|
// src/commands/create/action.ts
|
2795
2795
|
var import_rest = require("@octokit/rest");
|
@@ -2797,22 +2797,37 @@ var import_rest = require("@octokit/rest");
|
|
2797
2797
|
// src/utils/config.ts
|
2798
2798
|
var import_fs = __toESM(require("fs"));
|
2799
2799
|
var import_path = __toESM(require("path"));
|
2800
|
-
var
|
2800
|
+
var import_os = __toESM(require("os"));
|
2801
|
+
var CONFIG_FILE = "ng-config.json";
|
2801
2802
|
function readConfig() {
|
2803
|
+
console.log("=== Debug Information ===");
|
2804
|
+
console.log("Current working directory:", process.cwd());
|
2805
|
+
console.log("Home directory:", import_os.default.homedir());
|
2802
2806
|
try {
|
2803
|
-
const currentDir = process.cwd();
|
2804
|
-
console.log("Current directory:", currentDir);
|
2805
2807
|
const currentDirPath = import_path.default.join(process.cwd(), CONFIG_FILE);
|
2806
|
-
|
2807
|
-
console.log("
|
2808
|
+
const homeDirPath = import_path.default.join(import_os.default.homedir(), CONFIG_FILE);
|
2809
|
+
console.log("\nSearching for config file at:");
|
2810
|
+
console.log("1.", currentDirPath);
|
2811
|
+
console.log(" Exists:", import_fs.default.existsSync(currentDirPath));
|
2812
|
+
console.log("2.", homeDirPath);
|
2813
|
+
console.log(" Exists:", import_fs.default.existsSync(homeDirPath));
|
2814
|
+
let configPath = "";
|
2808
2815
|
if (import_fs.default.existsSync(currentDirPath)) {
|
2809
|
-
|
2810
|
-
|
2811
|
-
|
2812
|
-
|
2813
|
-
|
2816
|
+
configPath = currentDirPath;
|
2817
|
+
console.log("\nUsing config from current directory");
|
2818
|
+
} else if (import_fs.default.existsSync(homeDirPath)) {
|
2819
|
+
configPath = homeDirPath;
|
2820
|
+
console.log("\nUsing config from home directory");
|
2821
|
+
} else {
|
2822
|
+
throw new Error(
|
2823
|
+
`Config file not found. Please create ${CONFIG_FILE} in your project directory or home directory.`
|
2824
|
+
);
|
2825
|
+
}
|
2826
|
+
const config = JSON.parse(import_fs.default.readFileSync(configPath, "utf8"));
|
2827
|
+
if (!config.githubToken) {
|
2828
|
+
throw new Error("GitHub token not found in config file.");
|
2814
2829
|
}
|
2815
|
-
|
2830
|
+
return config;
|
2816
2831
|
} catch (error) {
|
2817
2832
|
if (error instanceof Error) {
|
2818
2833
|
throw new Error(`Failed to read config: ${error.message}`);
|