@penvhq/provider-github 0.11.0 → 0.13.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.
- package/dist/index.cjs +14801 -33
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +338 -12
- package/dist/index.d.ts +338 -12
- package/dist/index.js +14804 -30
- package/dist/index.js.map +1 -1
- package/package.json +14 -4
- package/penv.d.ts +23 -0
package/package.json
CHANGED
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@penvhq/provider-github",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "The GitHub Actions Secrets provider — a projection-holding, value-withholding store penv pushes to through the gh CLI.",
|
|
5
5
|
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/Itzfeminisce/penvhq.git",
|
|
9
|
+
"directory": "packages/providers/github"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/Itzfeminisce/penvhq#readme",
|
|
6
12
|
"type": "module",
|
|
7
13
|
"main": "./dist/index.cjs",
|
|
8
14
|
"module": "./dist/index.js",
|
|
@@ -15,10 +21,14 @@
|
|
|
15
21
|
}
|
|
16
22
|
},
|
|
17
23
|
"files": [
|
|
18
|
-
"dist"
|
|
24
|
+
"dist",
|
|
25
|
+
"penv.d.ts"
|
|
19
26
|
],
|
|
20
|
-
"
|
|
21
|
-
"
|
|
27
|
+
"penv": {
|
|
28
|
+
"types": "penv.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@penvhq/core": "0.13.0"
|
|
22
32
|
},
|
|
23
33
|
"scripts": {
|
|
24
34
|
"build": "tsup"
|
package/penv.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This package's `penv.config.ts` shape — the file `penv.types` names, which
|
|
3
|
+
* `penv add` copies verbatim into the project as a committed declaration.
|
|
4
|
+
*
|
|
5
|
+
* It lands in a repository where this package is not installed, so it names no
|
|
6
|
+
* module but `@penvhq/core`, the interface it augments. Declaring the shape is
|
|
7
|
+
* what makes a key this provider never reads a compile error: the open base
|
|
8
|
+
* shape it would otherwise get carries an index signature that accepts any.
|
|
9
|
+
*/
|
|
10
|
+
|
|
11
|
+
export {};
|
|
12
|
+
|
|
13
|
+
declare module "@penvhq/core" {
|
|
14
|
+
interface ProviderConfigMap {
|
|
15
|
+
"@penvhq/provider-github": {
|
|
16
|
+
/**
|
|
17
|
+
* The repository penv maps the projection onto — `owner/repo`. Left
|
|
18
|
+
* unset, `gh` resolves it from the working directory.
|
|
19
|
+
*/
|
|
20
|
+
readonly location?: string;
|
|
21
|
+
};
|
|
22
|
+
}
|
|
23
|
+
}
|