Skip to content

Commit

Permalink
Reformat and sign w/ Dart 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dnys1 committed Jun 21, 2024
1 parent 180d424 commit ed18ad9
Show file tree
Hide file tree
Showing 8 changed files with 1,009 additions and 303 deletions.
1,290 changes: 996 additions & 294 deletions dist/index.mjs

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions dist/main.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sig.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/node/actions/core.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'dart:js_interop';
external Core get core;

@JS()
extension type Core (JSObject obj) {
extension type Core(JSObject obj) {
external String getInput(String name);

external void setOutput(String name, String value);
Expand Down
2 changes: 1 addition & 1 deletion lib/node/actions/exec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'dart:js_interop';
external Exec get exec;

@JS()
extension type Exec (JSObject obj) {
extension type Exec(JSObject obj) {
/// Exec a command.
///
/// Output will be streamed to the live console. Returns promise with return
Expand Down
2 changes: 1 addition & 1 deletion lib/node/fs.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import 'dart:js_interop';
external FileSystem get fs;

@JS()
extension type FileSystem (JSObject fileSystem) {
extension type FileSystem(JSObject fileSystem) {
/// Whether the [path] exists, false otherwise.
external bool existsSync(String path);

Expand Down
2 changes: 1 addition & 1 deletion lib/node/os.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import 'dart:js_interop';
external OS get os;

@JS()
extension type OS (JSObject obj) {
extension type OS(JSObject obj) {
@JS('arch')
external String _arch();

Expand Down
2 changes: 1 addition & 1 deletion lib/node/process.dart
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import 'dart:js_util';
external Process get process;

@JS()
extension type Process (JSObject obj) {
extension type Process(JSObject obj) {
@JS('env')
// Map<String, String?>
external JSObject get _env;
Expand Down

0 comments on commit ed18ad9

Please sign in to comment.