Initial commit: project setup with TypeScript and CI/CD configuration

This commit establishes the foundational structure for @push.rocks/smartregistry,
a registry for npm modules and OCI images. Includes development environment
configuration, build tooling, and CI/CD workflows for automated testing and publishing.

Co-authored-by: Ona <no-reply@ona.com>
This commit is contained in:
2025-11-19 14:41:19 +00:00
commit 3cb31872ae
16 changed files with 8960 additions and 0 deletions

3
ts/index.ts Normal file
View File

@@ -0,0 +1,3 @@
import * as plugins from './smartregistry.plugins.js';
export let demoExport = 'Hi there! :) This is an exported string';

5
ts/paths.ts Normal file
View File

@@ -0,0 +1,5 @@
import * as plugins from './plugins.js';
export const packageDir = plugins.path.join(
plugins.smartpath.get.dirnameFromImportMetaUrl(import.meta.url),
'../',
);

9
ts/plugins.ts Normal file
View File

@@ -0,0 +1,9 @@
// native scope
import * as path from 'path';
export { path };
// @push.rocks scope
import * as smartpath from '@push.rocks/smartpath';
export { smartpath };