Skip to content

Commit cf0fec1

Browse files
committed
Published using @Stream44 Studio
Signed-off-by: Christoph <christoph@christoph.diy>
1 parent 6f302a8 commit cf0fec1

74 files changed

Lines changed: 714 additions & 334 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

bin/activate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ await run(async ({ encapsulate, CapsulePropertyTypes, makeImportStack }: any) =>
1010
'#': {
1111
cli: {
1212
type: CapsulePropertyTypes.Mapping,
13-
value: 't44/caps/WorkspaceCli'
13+
value: '@stream44.studio/t44/caps/WorkspaceCli'
1414
},
1515
}
1616
}

bin/postinstall.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
#!/usr/bin/env bash
22

3-
# Used by 't44' dependent packages.
3+
# Used by '@stream44.studio/t44' dependent packages.
44

55
set -e
66

77
# Create .workspace/bin directory
88
mkdir -p .workspace/bin
99

1010
# Symlink activate binary
11-
ln -sf ../../node_modules/t44/bin/activate .workspace/bin/activate
11+
ln -sf ../../node_modules/@stream44.studio/t44/bin/activate .workspace/bin/activate
1212

1313
# Symlink shell binary
14-
ln -sf ../../node_modules/t44/bin/shell .workspace/bin/shell
14+
ln -sf ../../node_modules/@stream44.studio/t44/bin/shell .workspace/bin/shell
1515

1616
# Symlink workspace binary
17-
ln -sf ../../node_modules/t44/bin/t44 .workspace/bin/t44
17+
ln -sf ../../node_modules/@stream44.studio/t44/bin/t44 .workspace/bin/t44
1818

1919
echo "Workspace binaries symlinked successfully"

bin/shell

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ await run(async ({ encapsulate, CapsulePropertyTypes, makeImportStack }: any) =>
99
'#': {
1010
cli: {
1111
type: CapsulePropertyTypes.Mapping,
12-
value: 't44/caps/WorkspaceShellCli'
12+
value: '@stream44.studio/t44/caps/WorkspaceShellCli'
1313
},
1414
}
1515
}
1616
}, {
1717
importMeta: import.meta,
1818
importStack: makeImportStack(),
19-
capsuleName: 't44/.workspace/bin/shell'
19+
capsuleName: '@stream44.studio/t44/.workspace/bin/shell'
2020
})
2121
return { spine }
2222
}, async ({ spine, apis }: any) => {

bin/t44

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ await run(async ({ encapsulate, CapsulePropertyTypes, makeImportStack }) => {
99
'#': {
1010
cli: {
1111
type: CapsulePropertyTypes.Mapping,
12-
value: 't44/caps/WorkspaceCli'
12+
value: '@stream44.studio/t44/caps/WorkspaceCli'
1313
},
1414
}
1515
}
1616
}, {
1717
importMeta: import.meta,
1818
importStack: makeImportStack(),
19-
capsuleName: 't44/.workspace/bin/t44'
19+
capsuleName: '@stream44.studio/t44/.workspace/bin/t44'
2020
})
2121
return { spine }
2222
}, async ({ spine, apis }) => {

caps/ConfigSchemaStruct.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export async function capsule({
1414
'#': {
1515
JsonSchema: {
1616
type: CapsulePropertyTypes.Mapping,
17-
value: 't44/caps/JsonSchemas'
17+
value: '@stream44.studio/t44/caps/JsonSchemas'
1818
},
1919
schema: {
2020
type: CapsulePropertyTypes.Literal,
@@ -52,4 +52,4 @@ export async function capsule({
5252
capsuleName: capsule['#'],
5353
})
5454
}
55-
capsule['#'] = 't44/caps/ConfigSchemaStruct'
55+
capsule['#'] = '@stream44.studio/t44/caps/ConfigSchemaStruct'

caps/Home.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export async function capsule({
1414
return encapsulate({
1515
'#@stream44.studio/encapsulate/spine-contracts/CapsuleSpineContract.v0': {
1616
'#@stream44.studio/encapsulate/structs/Capsule': {},
17-
'#t44/structs/HomeRegistryConfig': {
17+
'#@stream44.studio/t44/structs/HomeRegistryConfig': {
1818
as: '$HomeRegistryConfig'
1919
},
2020
'#': {
@@ -54,4 +54,4 @@ export async function capsule({
5454
capsuleName: capsule['#'],
5555
})
5656
}
57-
capsule['#'] = 't44/caps/Home'
57+
capsule['#'] = '@stream44.studio/t44/caps/Home'

caps/HomeRegistry.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,32 @@ export async function capsule({
1010
return encapsulate({
1111
'#@stream44.studio/encapsulate/spine-contracts/CapsuleSpineContract.v0': {
1212
'#@stream44.studio/encapsulate/structs/Capsule': {},
13-
'#t44/structs/HomeRegistryConfig': {
13+
'#@stream44.studio/t44/structs/HomeRegistryConfig': {
1414
as: '$HomeRegistryConfig'
1515
},
16-
'#t44/structs/HomeRegistry': {
16+
'#@stream44.studio/t44/structs/HomeRegistry': {
1717
as: '$HomeRegistry'
1818
},
19-
'#t44/structs/Workspace': {
19+
'#@stream44.studio/t44/structs/Workspace': {
2020
as: '$Workspace'
2121
},
22-
'#t44/structs/WorkspaceKey': {
22+
'#@stream44.studio/t44/structs/WorkspaceKey': {
2323
as: '$WorkspaceKey'
2424
},
25-
'#t44/structs/ProjectRack': {
25+
'#@stream44.studio/t44/structs/ProjectRack': {
2626
as: '$ProjectRack'
2727
},
28-
'#t44/structs/WorkspaceCatalogs': {
28+
'#@stream44.studio/t44/structs/WorkspaceCatalogs': {
2929
as: '$WorkspaceCatalogs'
3030
},
3131
'#': {
3232
Home: {
3333
type: CapsulePropertyTypes.Mapping,
34-
value: 't44/caps/Home'
34+
value: '@stream44.studio/t44/caps/Home'
3535
},
3636
WorkspacePrompt: {
3737
type: CapsulePropertyTypes.Mapping,
38-
value: 't44/caps/WorkspacePrompt'
38+
value: '@stream44.studio/t44/caps/WorkspacePrompt'
3939
},
4040
rootDir: {
4141
type: CapsulePropertyTypes.GetterFunction,
@@ -316,4 +316,4 @@ export async function capsule({
316316
capsuleName: capsule['#'],
317317
})
318318
}
319-
capsule['#'] = 't44/caps/HomeRegistry'
319+
capsule['#'] = '@stream44.studio/t44/caps/HomeRegistry'

caps/HomeRegistryFile.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ export async function capsule({
1414
return encapsulate({
1515
'#@stream44.studio/encapsulate/spine-contracts/CapsuleSpineContract.v0': {
1616
'#@stream44.studio/encapsulate/structs/Capsule': {},
17-
'#t44/structs/HomeRegistryConfig': {
17+
'#@stream44.studio/t44/structs/HomeRegistryConfig': {
1818
as: '$HomeRegistryConfig'
1919
},
2020
'#': {
2121
JsonSchema: {
2222
type: CapsulePropertyTypes.Mapping,
23-
value: 't44/caps/JsonSchemas'
23+
value: '@stream44.studio/t44/caps/JsonSchemas'
2424
},
2525
RegisterSchemas: {
2626
type: CapsulePropertyTypes.StructInit,
@@ -141,4 +141,4 @@ export async function capsule({
141141
capsuleName: capsule['#'],
142142
})
143143
}
144-
capsule['#'] = 't44/caps/HomeRegistryFile'
144+
capsule['#'] = '@stream44.studio/t44/caps/HomeRegistryFile'

caps/JsonSchemas.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export async function capsule({
3131
'#': {
3232
WorkspaceConfig: {
3333
type: CapsulePropertyTypes.Mapping,
34-
value: 't44/caps/WorkspaceConfig'
34+
value: '@stream44.studio/t44/caps/WorkspaceConfig'
3535
},
3636
schemas: {
3737
type: CapsulePropertyTypes.Literal,
@@ -217,4 +217,4 @@ export async function capsule({
217217
capsuleName: capsule['#'],
218218
})
219219
}
220-
capsule['#'] = 't44/caps/JsonSchemas'
220+
capsule['#'] = '@stream44.studio/t44/caps/JsonSchemas'

caps/OpenApiSchema.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export async function capsule({
1616
'#': {
1717
WorkspaceConfig: {
1818
type: CapsulePropertyTypes.Mapping,
19-
value: 't44/caps/WorkspaceConfig'
19+
value: '@stream44.studio/t44/caps/WorkspaceConfig'
2020
},
2121
url: {
2222
type: CapsulePropertyTypes.Literal,
@@ -64,4 +64,4 @@ export async function capsule({
6464
capsuleName: capsule['#'],
6565
})
6666
}
67-
capsule['#'] = 't44/caps/OpenApiSchema'
67+
capsule['#'] = '@stream44.studio/t44/caps/OpenApiSchema'

0 commit comments

Comments
 (0)