[wip] cubes packaging and distribution via registry
Publish snapshot / snapshot (push) Successful in 1m21s

This commit is contained in:
Benjamin Diedrichsen
2026-07-28 09:37:42 +02:00
parent 30d93dddc5
commit ac050c4459
13 changed files with 414 additions and 103 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import { cubes } from '@bitsquare/nopy';
export default cubes.Manifest({
name: '[apt-all] Test dependencies',
dependencies: () => ['apt/more'],
name: '[test:apt-all] Test dependencies',
dependencies: () => ['test:apt-more'],
});
@@ -2,7 +2,7 @@ import { cubes } from '@bitsquare/nopy';
import { z } from 'zod';
export default cubes.Manifest({
name: '[apt:essentials] Install essential packages',
name: '[test:apt-essentials] Install essential packages',
dependencies: () => [],
schema: z.object({
UPDATE: z.boolean().default(false),
+2 -2
View File
@@ -1,6 +1,6 @@
import { cubes } from '@bitsquare/nopy';
export default cubes.Manifest({
name: '[apt-more] Test dependencies',
dependencies: () => [['apt/essentials']],
name: '[test:apt-more] Test dependencies',
dependencies: () => [['test:apt-essentials']],
});