notion-github 0.1.1 → 0.1.3
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.cjs +11 -0
- package/dist/cli.d.mts +1 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.esm +10 -0
- package/package.json +2 -2
package/dist/cli.cjs
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
#!/usr/bin/env node
|
2
|
+
#!/usr/bin/env node
|
3
|
+
"use strict";
|
4
|
+
|
5
|
+
// src/cli.ts
|
6
|
+
var import_commander = require("commander");
|
7
|
+
var program = new import_commander.Command();
|
8
|
+
program.name("pr-cli").description("A simple CLI tool").version("0.1.2").action(() => {
|
9
|
+
console.log("Hello World");
|
10
|
+
});
|
11
|
+
program.parse();
|
package/dist/cli.d.mts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
#!/usr/bin/env node
|
package/dist/cli.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
#!/usr/bin/env node
|
package/dist/cli.esm
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
#!/usr/bin/env node
|
2
|
+
#!/usr/bin/env node
|
3
|
+
|
4
|
+
// src/cli.ts
|
5
|
+
import { Command } from "commander";
|
6
|
+
var program = new Command();
|
7
|
+
program.name("pr-cli").description("A simple CLI tool").version("0.1.2").action(() => {
|
8
|
+
console.log("Hello World");
|
9
|
+
});
|
10
|
+
program.parse();
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "notion-github",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.3",
|
4
4
|
"description": "GitHub and Notion integration for PR automation",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"module": "dist/index.mjs",
|
@@ -30,6 +30,6 @@
|
|
30
30
|
"ora": "^8.1.1"
|
31
31
|
},
|
32
32
|
"bin": {
|
33
|
-
"pr-cli": "dist/cli.
|
33
|
+
"pr-cli": "dist/cli.js"
|
34
34
|
}
|
35
35
|
}
|