@devory/github 0.1.0 → 0.3.0

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/dist/index.js +3 -3
  2. package/package.json +7 -3
package/dist/index.js CHANGED
@@ -28,8 +28,8 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
28
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
29
 
30
30
  // src/index.ts
31
- var index_exports = {};
32
- __export(index_exports, {
31
+ var src_exports = {};
32
+ __export(src_exports, {
33
33
  appendStepSummary: () => appendStepSummary,
34
34
  branchPrefix: () => branchPrefix,
35
35
  buildBranchName: () => buildBranchName,
@@ -50,7 +50,7 @@ __export(index_exports, {
50
50
  slugify: () => slugify,
51
51
  taskScope: () => taskScope
52
52
  });
53
- module.exports = __toCommonJS(index_exports);
53
+ module.exports = __toCommonJS(src_exports);
54
54
 
55
55
  // src/lib/branch-helpers.ts
56
56
  var BRANCH_PREFIX_MAP = {
package/package.json CHANGED
@@ -1,7 +1,11 @@
1
1
  {
2
2
  "name": "@devory/github",
3
- "version": "0.1.0",
3
+ "version": "0.3.0",
4
4
  "description": "Devory GitHub integration — branch naming, PR helpers, and GitHub Actions support",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/devoryai/devory"
8
+ },
5
9
  "main": "./dist/index.js",
6
10
  "types": "./src/index.ts",
7
11
  "exports": {
@@ -18,8 +22,8 @@
18
22
  "test": "tsx --test src/test/branch-helpers.test.ts src/test/pr-helpers.test.ts src/test/action-helpers.test.ts"
19
23
  },
20
24
  "dependencies": {
21
- "@devory/cli": "0.1.1",
22
- "@devory/core": "0.1.0"
25
+ "@devory/cli": "0.3.0",
26
+ "@devory/core": "0.3.0"
23
27
  },
24
28
  "devDependencies": {
25
29
  "esbuild": "^0.20.0",