@quatrain/code 1.1.1 → 1.1.2
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/README.md +21 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# @quatrain/code
|
|
2
|
+
|
|
3
|
+
Source code management and Git utilities for Quatrain.
|
|
4
|
+
|
|
5
|
+
## Purpose
|
|
6
|
+
|
|
7
|
+
This package is part of the Quatrain Core monorepo. It provides utilities and adapters for managing source code, Git repositories, and repository metadata within the Quatrain ecosystem.
|
|
8
|
+
|
|
9
|
+
## HOWTO / Usage Examples
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
import { Code } from '@quatrain/code'
|
|
13
|
+
|
|
14
|
+
// Use Code management utilities
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Conventions & Technical Details
|
|
18
|
+
|
|
19
|
+
- Follows the standard Quatrain architecture patterns.
|
|
20
|
+
- Ensure proper configuration before usage.
|
|
21
|
+
- See the root monorepo documentation for more details on building and testing this package.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/code",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
4
4
|
"license": "AGPL-3.0-only",
|
|
5
5
|
"description": "Remote code repository adapters commons",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"author": "Quatrain Développement SAS <developers@quatrain.com>",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@quatrain/core": "^1.
|
|
23
|
+
"@quatrain/core": "^1.2.5"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"@tsconfig/recommended": "^1.0.1",
|