Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
philcockfield committed Nov 16, 2024
1 parent acea01f commit bd0d55d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions code/sys.driver/driver-vite/src/-test/-sample-imports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,22 @@ const now = new Date();
* Namespace: @sys
*/
console.group('🌳 import: @sys/std');
import { Args, D, IndexedDb, Path, Time, rx, Semver } from '@sys/std';
import { Args, D, IndexedDb, Path, Time, rx } from '@sys/std';
import { Semver } from '@sys/std/semver';
import { Jsr } from '@sys/std/jsr';
import { Str } from '@sys/text';

console.info('@sys/std:rx', rx);
console.info('@sys/std:Path', Path);
console.info('@sys/std:D (Date)', D, `"${D.format(now, 'E MMM do, yyyy')}"`);
console.info('@sys/std:Time', Time);
console.info('@sys/std:Args', Args, 'parsed:', Args.parse(['--foo', '--bar=baz', './file.txt']));
console.info('@sys/std:Semver', Semver, Semver.parse('1.2.3'));
console.info('@sys/std:IndexedDb', IndexedDb);
console.info('@sys/text:Str', Str);
console.info('@sys/text:Str.bytes', `"${Str.bytes(1337)}"`);
console.log();
console.info('@sys/std/jsr', Jsr);
console.info('@sys/std/semver', Semver, Semver.parse('1.2.3'));
console.groupEnd();

/**
Expand Down

0 comments on commit bd0d55d

Please sign in to comment.