streamline package naming

This commit is contained in:
Benjamin Diedrichsen
2026-07-29 13:07:34 +02:00
parent 1ba1c2a32a
commit 7e703c93b1
100 changed files with 141 additions and 139 deletions
+5 -3
View File
@@ -4,10 +4,12 @@ import { defineConfig } from 'vitest/config';
export default defineConfig({
resolve: {
alias: {
// The workspace link points at nopy-cube's `dist`, which only exists after
// The workspace link points at nopy-cubes's `dist`, which only exists after
// a build. Tests read its source instead, so the gate does not depend on
// build ordering and never runs against a stale artifact.
'@bitsquare/nopy-cube': fileURLToPath(new URL('../nopy-cube/src/index.ts', import.meta.url)),
'@bitsquare/nopy-cubes': fileURLToPath(
new URL('../nopy-cubes/src/index.ts', import.meta.url)
),
},
},
test: {
@@ -22,7 +24,7 @@ export default defineConfig({
exclude: [
'src/**/*.test.ts',
// Reached through the resolve.alias above; it has its own gate.
'**/nopy-cube/**',
'**/nopy-cubes/**',
// Pure re-export barrels: no logic to cover.
'src/index.ts',
'src/cubes/index.ts',