@stacksjs/registry 0.68.1 → 0.69.1
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 +2 -1
- package/dist/index.d.ts +9 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,7 +13,8 @@ bun install -d @stacksjs/registry
|
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
```typescript
|
|
16
|
-
import {
|
|
16
|
+
import type { Registry } from '@stacksjs/registry'
|
|
17
|
+
import { registry } from '@stacksjs/registry'
|
|
17
18
|
|
|
18
19
|
console.log(registry) // the Registry as an object
|
|
19
20
|
```
|
package/dist/index.d.ts
CHANGED
|
@@ -3,6 +3,13 @@ export declare type Registry = {
|
|
|
3
3
|
url: string
|
|
4
4
|
github: string
|
|
5
5
|
}[]
|
|
6
|
-
export declare const registry: Registry;
|
|
7
6
|
|
|
8
|
-
export
|
|
7
|
+
export const registry: Registry = [
|
|
8
|
+
{
|
|
9
|
+
name: 'stacks',
|
|
10
|
+
url: 'stacksjs.org',
|
|
11
|
+
github: 'stacksjs/stacks',
|
|
12
|
+
},
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
export default registry
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/registry",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.69.1",
|
|
5
5
|
"description": "The Stacks Registry.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
"prepublishOnly": "bun run build"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@stacksjs/development": "0.
|
|
34
|
+
"@stacksjs/development": "0.68.2"
|
|
35
35
|
}
|
|
36
36
|
}
|