Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
3cb77d6
Migrated Sigv4 Example Project
tyllark Apr 28, 2025
07a9516
Migrate Amplify DB Common Dart
tyllark Apr 28, 2025
939a198
Migrate Example Common
tyllark Apr 28, 2025
6b7f0d8
Migrated Amplify Storage S3 Dart
tyllark Apr 28, 2025
ca8bb92
Migrated Amplify Storage S3 Dart Example Project
tyllark Apr 28, 2025
7992b1a
Migrated Amplify Auth Cognito Dart
tyllark Apr 28, 2025
308c463
Migrated Amplify Auth Cognito Dart Example Project
tyllark Apr 28, 2025
d62c288
Migrated Amplify Core
tyllark Apr 28, 2025
85e3274
Migrated Actions
tyllark Apr 28, 2025
d2a8415
Migrated Worker Bee E2E
tyllark Apr 28, 2025
963fd63
Migrated Worker Bee
tyllark Apr 28, 2025
44d7055
Migrated Template
tyllark Apr 28, 2025
95d8188
Pinned analyzer to 7.3.X
tyllark Apr 29, 2025
1108c94
Fixed Sigv4 Analyzer errors
tyllark Apr 29, 2025
8b9ebfa
chore(test): added emailmfa attribute to first user sign up in test (…
ekjotmultani May 14, 2025
2ff5cdf
Merge branch 'feature/wasm_support' into feature/wasm_support_web_mig…
tyllark May 15, 2025
17dc235
chore(): updated CI/CD to support Flutter 3.32.0 and Cognito changes
ekjotmultani May 28, 2025
d5d98cb
chore(): Pinned built_value version
tyllark May 28, 2025
fb70eb7
chore(): Regenerated files
tyllark May 29, 2025
890b4e9
chore(version): Bump version
tyllark May 28, 2025
00455a8
chore(datastore,notifications): Fixed Android desugar complication error
tyllark Jun 2, 2025
5b6de63
chore(): unpin built_value (#6157)
tyllark Jun 4, 2025
9f5169e
Merge branch 'feature/wasm_support' into feature/wasm_support_web_mig…
tyllark Jun 4, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
13 changes: 8 additions & 5 deletions actions/lib/src/node/actions/exec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@

import 'dart:convert';
import 'dart:js_interop';
//ignore: deprecated_member_use
import 'dart:js_util';

@JS()
external Exec get exec;
Expand Down Expand Up @@ -46,9 +44,14 @@ extension type Exec._(JSObject it) {
ignoreReturnCode: !failOnNonZeroExit,
);
try {
final exitCode = await promiseToFuture<int>(
_exec(commandLine, args.map((arg) => arg.toJS).toList().toJS, options),
);
final jsExitCode =
await _exec(
commandLine,
args.map((arg) => arg.toJS).toList().toJS,
options,
).toDart;

final exitCode = (jsExitCode as JSNumber).toDartInt;
return ExecResult(
exitCode: exitCode,
stdout: stdout.toString(),
Expand Down
21 changes: 6 additions & 15 deletions packages/aft/lib/src/changelog/changelog.g.dart

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

64 changes: 14 additions & 50 deletions packages/aft/lib/src/config/config.g.dart

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

Loading
Loading