feat(ci): Migrate CI/CD workflow from GitLab CI to Gitea CI

This commit is contained in:
2024-10-26 14:14:41 +02:00
parent c931a0459a
commit 1a1ceba76d
15 changed files with 3497 additions and 19083 deletions

View File

@ -1,8 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smarts3',
version: '2.1.1',
description: 'create an s3 endpoint that maps to a local directory'
name: '@push.rocks/smarts3',
version: '2.2.0',
description: 'A Node.js TypeScript package to create a local S3 endpoint for simulating AWS S3 operations using mapped local directories for development and testing purposes.'
}

View File

@ -1,4 +1,4 @@
import * as plugins from './smarts3.plugins.js';
import * as plugins from './plugins.js';
import * as paths from './paths.js';
export interface ISmarts3ContructorOptions {

View File

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

View File

@ -4,9 +4,9 @@ import * as path from 'path';
export { path };
// pushrocks scope
import * as smartbucket from '@pushrocks/smartbucket';
import * as smartfile from '@pushrocks/smartfile';
import * as smartpath from '@pushrocks/smartpath';
import * as smartbucket from '@push.rocks/smartbucket';
import * as smartfile from '@push.rocks/smartfile';
import * as smartpath from '@push.rocks/smartpath';
export { smartbucket, smartfile, smartpath };