@digipair/skill-git 0.7.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/index.cjs.d.ts +1 -0
- package/index.cjs.js +9 -0
- package/index.d.ts +1 -0
- package/libs/skill-git/src/index.d.ts +1 -0
- package/libs/skill-git/src/lib/skill-git.d.ts +1 -0
- package/package.json +8 -0
- package/schema.json +13 -0
package/index.cjs.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./src/index";
|
package/index.cjs.js
ADDED
package/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from 'libs/skill-git/src/index';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './lib/skill-git';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function skillGit(): string;
|
package/package.json
ADDED
package/schema.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"title": "@digipair/skill-git",
|
|
5
|
+
"summary": "Gestion d'un dépôt git",
|
|
6
|
+
"description": "Cette compétence permet de gérer un dépôt git.",
|
|
7
|
+
"version": "0.1.0",
|
|
8
|
+
"x-icon": "💾"
|
|
9
|
+
},
|
|
10
|
+
"paths": {},
|
|
11
|
+
"components": {},
|
|
12
|
+
"x-scene-blocks": {}
|
|
13
|
+
}
|