File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 4
4
description : Library for dealing with Flutter bundle (.flx) files
5
5
homepage : https://github.com/flutter/flutter/tree/master/packages/flx
6
6
dependencies :
7
+ bignum : ^0.0.7
7
8
asn1lib : ^0.4.1
8
9
cipher : ^0.7.1
9
10
crypto : ^0.9.1
10
- path : ^1.3.0
11
- sky_services : 0.0.50
12
- yaml : ^2.1.3
13
11
14
12
environment :
15
13
sdk : ' >=1.12.0 <2.0.0'
14
+
15
+ dev_dependencies :
16
+ test : ^0.12.5
Original file line number Diff line number Diff line change 1
1
import 'dart:convert' hide BASE64;
2
- import 'dart:typed_data' ;
3
2
import 'dart:io' ;
3
+ import 'dart:typed_data' ;
4
4
5
5
import 'package:crypto/crypto.dart' ;
6
- import 'package:flx/signing.dart' ;
7
6
import 'package:flx/bundle.dart' ;
8
- import 'package:path/path .dart' as path ;
7
+ import 'package:flx/signing .dart' ;
9
8
import 'package:test/test.dart' ;
10
9
11
10
main () async {
@@ -26,7 +25,7 @@ main() async {
26
25
27
26
// Create a temp dir and file for the bundle.
28
27
Directory tempDir = await Directory .systemTemp.createTempSync ('bundle_test' );
29
- String bundlePath = path. join ( tempDir.path, ' bundle.flx') ;
28
+ String bundlePath = tempDir.path + '/ bundle.flx' ;
30
29
31
30
AsymmetricKeyPair keyPair = keyPairFromPrivateKeyBytes (kPrivateKeyDER);
32
31
Map <String , dynamic > manifest = JSON .decode (UTF8 .decode (
File renamed without changes.
Original file line number Diff line number Diff line change 3
3
// found in the LICENSE file.
4
4
5
5
import 'dart:async' ;
6
- import 'dart:convert' ;
7
- import 'dart:math' ;
8
6
import 'dart:io' ;
9
- import 'dart:typed_data' ;
10
7
11
8
import 'package:mojo/core.dart' ;
12
9
import 'package:flutter/services.dart' ;
Original file line number Diff line number Diff line change 4
4
pub global activate tuneup
5
5
6
6
(cd packages/cassowary; pub get)
7
- (cd packages/newton; pub get)
8
7
(cd packages/flutter_tools; pub get)
8
+ (cd packages/flx; pub get)
9
+ (cd packages/newton; pub get)
9
10
(cd packages/unit; pub get)
10
11
11
12
./travis/download_tester.py packages/unit/packages/sky_engine/REVISION bin/cache/travis/out/Debug
Original file line number Diff line number Diff line change 2
2
set -ex
3
3
4
4
(cd packages/cassowary; pub global run tuneup check; pub run test -j1)
5
- (cd packages/newton; pub global run tuneup check; pub run test -j1)
6
5
(cd packages/flutter_tools; pub global run tuneup check; pub run test -j1)
6
+ (cd packages/flx; pub global run tuneup check; pub run test -j1)
7
+ (cd packages/newton; pub global run tuneup check; pub run test -j1)
8
+
7
9
./dev/run_tests --engine-dir bin/cache/travis
You can’t perform that action at this time.
0 commit comments