fix(smartsystem): Normalize package scopes, update dev dependencies and tooling, add pnpm workspace and packageManager, remove GitLab CI, and update imports/docs/tests

This commit is contained in:
2025-08-29 12:33:51 +00:00
parent f87fa3bf2b
commit 3eac579317
10 changed files with 9219 additions and 804 deletions

View File

@@ -1,8 +1,8 @@
/**
* autocreated commitinfo by @pushrocks/commitinfo
* autocreated commitinfo by @push.rocks/commitinfo
*/
export const commitinfo = {
name: '@pushrocks/smartsystem',
version: '3.0.1',
description: 'interact with the system you are running on'
name: '@push.rocks/smartsystem',
version: '3.0.2',
description: 'A TypeScript library for interacting with the system it's running on, including environment, network, and hardware information.'
}

View File

@@ -3,10 +3,10 @@ import os from 'os';
export { os };
import * as lik from '@pushrocks/lik';
import * as smartenv from '@pushrocks/smartenv';
import * as smartnetwork from '@pushrocks/smartnetwork';
import * as smartpromise from '@pushrocks/smartpromise';
import * as lik from '@push.rocks/lik';
import * as smartenv from '@push.rocks/smartenv';
import * as smartnetwork from '@push.rocks/smartnetwork';
import * as smartpromise from '@push.rocks/smartpromise';
export { lik, smartenv, smartnetwork, smartpromise };