Skip to content

Commit 652cab3

Browse files
committed
rename package name
1 parent eb4c1c1 commit 652cab3

21 files changed

+33
-33
lines changed

.github/workflows/dart.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -152,16 +152,16 @@ jobs:
152152
if: "always() && steps.pkg_web_css_pub_get.conclusion == 'success'"
153153
working-directory: pkg/web_css
154154
job_003:
155-
name: "smoke_test; PKGS: pkg/indexed_blob, pkg/screenshot_tools; `dart format --output=none --set-exit-if-changed .`, `dart analyze --fatal-infos .`"
155+
name: "smoke_test; PKGS: pkg/indexed_blob, pkg/puppeteer_screenshots; `dart format --output=none --set-exit-if-changed .`, `dart analyze --fatal-infos .`"
156156
runs-on: ubuntu-latest
157157
steps:
158158
- name: Cache Pub hosted dependencies
159159
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
160160
with:
161161
path: "~/.pub-cache/hosted"
162-
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.9.0;packages:pkg/indexed_blob-pkg/screenshot_tools;commands:format-analyze_1"
162+
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.9.0;packages:pkg/indexed_blob-pkg/puppeteer_screenshots;commands:format-analyze_1"
163163
restore-keys: |
164-
os:ubuntu-latest;pub-cache-hosted;sdk:3.9.0;packages:pkg/indexed_blob-pkg/screenshot_tools
164+
os:ubuntu-latest;pub-cache-hosted;sdk:3.9.0;packages:pkg/indexed_blob-pkg/puppeteer_screenshots
165165
os:ubuntu-latest;pub-cache-hosted;sdk:3.9.0
166166
os:ubuntu-latest;pub-cache-hosted
167167
os:ubuntu-latest
@@ -185,19 +185,19 @@ jobs:
185185
run: dart analyze --fatal-infos .
186186
if: "always() && steps.pkg_indexed_blob_pub_get.conclusion == 'success'"
187187
working-directory: pkg/indexed_blob
188-
- id: pkg_screenshot_tools_pub_get
189-
name: pkg/screenshot_tools; dart pub get
188+
- id: pkg_puppeteer_screenshots_pub_get
189+
name: pkg/puppeteer_screenshots; dart pub get
190190
run: dart pub get
191191
if: "always() && steps.checkout.conclusion == 'success'"
192-
working-directory: pkg/screenshot_tools
193-
- name: "pkg/screenshot_tools; dart format --output=none --set-exit-if-changed ."
192+
working-directory: pkg/puppeteer_screenshots
193+
- name: "pkg/puppeteer_screenshots; dart format --output=none --set-exit-if-changed ."
194194
run: "dart format --output=none --set-exit-if-changed ."
195-
if: "always() && steps.pkg_screenshot_tools_pub_get.conclusion == 'success'"
196-
working-directory: pkg/screenshot_tools
197-
- name: "pkg/screenshot_tools; dart analyze --fatal-infos ."
195+
if: "always() && steps.pkg_puppeteer_screenshots_pub_get.conclusion == 'success'"
196+
working-directory: pkg/puppeteer_screenshots
197+
- name: "pkg/puppeteer_screenshots; dart analyze --fatal-infos ."
198198
run: dart analyze --fatal-infos .
199-
if: "always() && steps.pkg_screenshot_tools_pub_get.conclusion == 'success'"
200-
working-directory: pkg/screenshot_tools
199+
if: "always() && steps.pkg_puppeteer_screenshots_pub_get.conclusion == 'success'"
200+
working-directory: pkg/puppeteer_screenshots
201201
job_004:
202202
name: "smoke_test; PKG: pkg/pub_integration; `dart format --output=none --set-exit-if-changed .`, `dart analyze --fatal-infos lib/`, `dart analyze --fatal-infos test/`"
203203
runs-on: ubuntu-latest
@@ -885,16 +885,16 @@ jobs:
885885
- job_007
886886
- job_008
887887
job_021:
888-
name: "unit_test; PKG: pkg/screenshot_tools; `dart test --run-skipped`"
888+
name: "unit_test; PKG: pkg/puppeteer_screenshots; `dart test --run-skipped`"
889889
runs-on: ubuntu-latest
890890
steps:
891891
- name: Cache Pub hosted dependencies
892892
uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
893893
with:
894894
path: "~/.pub-cache/hosted"
895-
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.9.0;packages:pkg/screenshot_tools;commands:test_09"
895+
key: "os:ubuntu-latest;pub-cache-hosted;sdk:3.9.0;packages:pkg/puppeteer_screenshots;commands:test_09"
896896
restore-keys: |
897-
os:ubuntu-latest;pub-cache-hosted;sdk:3.9.0;packages:pkg/screenshot_tools
897+
os:ubuntu-latest;pub-cache-hosted;sdk:3.9.0;packages:pkg/puppeteer_screenshots
898898
os:ubuntu-latest;pub-cache-hosted;sdk:3.9.0
899899
os:ubuntu-latest;pub-cache-hosted
900900
os:ubuntu-latest
@@ -905,15 +905,15 @@ jobs:
905905
- id: checkout
906906
name: Checkout repository
907907
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c
908-
- id: pkg_screenshot_tools_pub_get
909-
name: pkg/screenshot_tools; dart pub get
908+
- id: pkg_puppeteer_screenshots_pub_get
909+
name: pkg/puppeteer_screenshots; dart pub get
910910
run: dart pub get
911911
if: "always() && steps.checkout.conclusion == 'success'"
912-
working-directory: pkg/screenshot_tools
913-
- name: "pkg/screenshot_tools; dart test --run-skipped"
912+
working-directory: pkg/puppeteer_screenshots
913+
- name: "pkg/puppeteer_screenshots; dart test --run-skipped"
914914
run: dart test --run-skipped
915-
if: "always() && steps.pkg_screenshot_tools_pub_get.conclusion == 'success'"
916-
working-directory: pkg/screenshot_tools
915+
if: "always() && steps.pkg_puppeteer_screenshots_pub_get.conclusion == 'success'"
916+
working-directory: pkg/puppeteer_screenshots
917917
needs:
918918
- job_001
919919
- job_002

pkg/pub_integration/lib/src/pub_puppeteer_helpers.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import 'dart:async';
55

66
import 'package:puppeteer/puppeteer.dart';
7-
import 'package:screenshot_tools/screenshot_utils.dart';
7+
import 'package:puppeteer_screenshots/screenshot_utils.dart';
88

99
import 'test_browser.dart';
1010

pkg/pub_integration/lib/src/test_browser.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import 'dart:io';
99
import 'package:_pub_shared/validation/html/html_validation.dart';
1010
import 'package:path/path.dart' as p;
1111
import 'package:puppeteer/puppeteer.dart';
12+
import 'package:puppeteer_screenshots/screenshot_utils.dart';
1213
import 'package:retry/retry.dart';
13-
import 'package:screenshot_tools/screenshot_utils.dart';
1414

1515
/// Creates and tracks the headless Chrome environment, its temp directories and
1616
/// and uncaught exceptions.

pkg/pub_integration/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ dependencies:
1313
path: ^1.8.0
1414
pub_semver: ^2.0.0
1515
puppeteer: 3.16.0
16+
puppeteer_screenshots:
1617
retry: ^3.1.2
17-
screenshot_tools:
1818
oauth2: ^2.0.0
1919

2020
dev_dependencies:

pkg/pub_integration/test/browser_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import 'package:pub_integration/src/fake_test_context_provider.dart';
99
import 'package:pub_integration/src/pub_puppeteer_helpers.dart';
1010
import 'package:pub_integration/src/test_browser.dart';
1111
import 'package:puppeteer/puppeteer.dart';
12-
import 'package:screenshot_tools/screenshot_utils.dart';
12+
import 'package:puppeteer_screenshots/screenshot_utils.dart';
1313
import 'package:test/test.dart';
1414

1515
void main() {

pkg/pub_integration/test/dartdoc_search_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import 'package:http/http.dart' as http;
88
import 'package:pub_integration/src/fake_test_context_provider.dart';
99
import 'package:pub_integration/src/test_browser.dart';
1010
import 'package:puppeteer/puppeteer.dart';
11-
import 'package:screenshot_tools/screenshot_utils.dart';
11+
import 'package:puppeteer_screenshots/screenshot_utils.dart';
1212
import 'package:test/test.dart';
1313

1414
void main() {

pkg/pub_integration/test/fake_sign_in_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import 'dart:convert';
77
import 'package:http/http.dart' as http;
88
import 'package:pub_integration/src/fake_test_context_provider.dart';
99
import 'package:pub_integration/src/test_browser.dart';
10-
import 'package:screenshot_tools/screenshot_utils.dart';
10+
import 'package:puppeteer_screenshots/screenshot_utils.dart';
1111
import 'package:test/test.dart';
1212

1313
void main() {

pkg/pub_integration/test/pkg_admin_page_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import 'package:http/http.dart' as http;
1010
import 'package:pub_integration/src/fake_test_context_provider.dart';
1111
import 'package:pub_integration/src/pub_puppeteer_helpers.dart';
1212
import 'package:pub_integration/src/test_browser.dart';
13-
import 'package:screenshot_tools/screenshot_utils.dart';
13+
import 'package:puppeteer_screenshots/screenshot_utils.dart';
1414
import 'package:test/test.dart';
1515

1616
void main() {

pkg/pub_integration/test/report_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import 'package:http/http.dart' as http;
99
import 'package:pub_integration/src/fake_test_context_provider.dart';
1010
import 'package:pub_integration/src/pub_puppeteer_helpers.dart';
1111
import 'package:pub_integration/src/test_browser.dart';
12-
import 'package:screenshot_tools/screenshot_utils.dart';
12+
import 'package:puppeteer_screenshots/screenshot_utils.dart';
1313
import 'package:test/test.dart';
1414

1515
final _caseIdExpr = RegExp(r'[0-9]{8}I[0-9a-f]{10}');

pkg/pub_integration/test/search_completition_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import 'package:http/http.dart' as http;
88
import 'package:pub_integration/src/fake_test_context_provider.dart';
99
import 'package:pub_integration/src/test_browser.dart';
1010
import 'package:puppeteer/puppeteer.dart';
11-
import 'package:screenshot_tools/screenshot_utils.dart';
11+
import 'package:puppeteer_screenshots/screenshot_utils.dart';
1212
import 'package:test/test.dart';
1313

1414
void main() {

0 commit comments

Comments
 (0)