Skip to content

Commit

Permalink
rel 1.3.3 for bun 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jhmaster2000 committed Jan 31, 2023
1 parent 2d85dc1 commit 81cb853
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"type": "module",
"name": "bun-repl",
"version": "1.3.2",
"version": "1.3.3",
"description": "Experimental unofficial REPL for Bun",
"main": "src/module/repl.ts",
"scripts": {
Expand All @@ -24,7 +24,7 @@
},
"keywords": ["bun", "repl", "cli", "ts", "js"],
"dependencies": {
"@swc/core": "^1.3.30",
"@swc/core": "^1.3.31",
"pretty-ms": "^8.0.0",
"rustybun": "^0.1.2"
},
Expand Down
2 changes: 1 addition & 1 deletion src/module/repl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const nodePrefixedModules = [
'assert', 'buffer', 'child_process', 'console', 'constants', 'crypto', 'dns', 'dns/promises', 'domain', 'events',
'fs', 'fs/promises', 'http', 'https', 'module', 'net', 'os', 'path', 'path/posix', 'path/win32', 'perf_hooks',
'process', 'punycode', 'querystring', 'readline', 'readline/promises', 'stream', 'stream/consumers', 'stream/web',
'string_decoder', 'sys', 'timers', 'timers/promises', 'tls', 'tty', 'url', 'util', 'util/types', 'zlib'
'string_decoder', 'sys', 'timers', 'timers/promises', 'tls', 'tty', 'url', 'util', 'util/types', 'wasi', 'zlib'
];
export const bunPrefixedModules = ['ffi', 'jsc', 'sqlite', 'wrap'];
export const unprefixedModules = [
Expand Down
2 changes: 1 addition & 1 deletion src/repl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function printInfo(): void {
console.log(`bun-repl v${pkgjson.version}
Installed at: ${$.cyan+path.join(import.meta.dir, '..')+$.reset}
Bun version: ${BUN_VERSION} ${$.dim}(${Bun.revision})${$.reset}
SWC version: v${swc.version as string}
SWC version: v${swc.version as unknown as string}
Color mode: ${$.bool(Bun.enableANSIColors)}
Debug mode: ${$.bool(IS_DEBUG)}
Current session uptime: ${$.yellow+prettyms(performance.now())+$.reset}`);
Expand Down

0 comments on commit 81cb853

Please sign in to comment.