Skip to content

Commit

Permalink
download-helpers -> downloading-helpers (#344)
Browse files Browse the repository at this point in the history
NPM registry doesn't like packages with 'download' in the name (but
'downloader' is OK):
https://stackoverflow.com/questions/64966736/npm-publish-verbose-stack-error-400-bad-request,
npm/cli#2248
  • Loading branch information
Que3216 authored Mar 30, 2023
1 parent f5d50a5 commit c9946a7
Show file tree
Hide file tree
Showing 20 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"@alwaysmeticulous/sdk-bundles-api": "^2.40.0",
"@alwaysmeticulous/client": "^2.40.0",
"@alwaysmeticulous/common": "^2.40.0",
"@alwaysmeticulous/download-helpers": "^2.40.0",
"@alwaysmeticulous/downloading-helpers": "^2.40.0",
"@alwaysmeticulous/replay-orchestrator": "^2.40.0",
"@alwaysmeticulous/record": "^2.40.0",
"@alwaysmeticulous/sentry": "^2.40.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { METICULOUS_LOGGER_NAME } from "@alwaysmeticulous/common";
import {
getOrFetchReplay,
getOrFetchReplayArchive,
} from "@alwaysmeticulous/download-helpers";
} from "@alwaysmeticulous/downloading-helpers";
import log from "loglevel";
import { buildCommand } from "../../command-utils/command-builder";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { METICULOUS_LOGGER_NAME } from "@alwaysmeticulous/common";
import {
getOrFetchRecordedSession,
getOrFetchRecordedSessionData,
} from "@alwaysmeticulous/download-helpers";
} from "@alwaysmeticulous/downloading-helpers";
import log from "loglevel";
import { buildCommand } from "../../command-utils/command-builder";

Expand Down
2 changes: 1 addition & 1 deletion packages/cli/src/commands/record/record.command.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
RecordSessionFn,
getCommitSha,
} from "@alwaysmeticulous/common";
import { fetchAsset } from "@alwaysmeticulous/download-helpers";
import { fetchAsset } from "@alwaysmeticulous/downloading-helpers";
import log from "loglevel";
import { buildCommand } from "../../command-utils/command-builder";

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@alwaysmeticulous/download-helpers",
"name": "@alwaysmeticulous/downloading-helpers",
"version": "2.40.3",
"description": "Helper utilities for downloading files & scripts required to execute replays",
"license": "ISC",
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/replay-orchestrator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@alwaysmeticulous/api": "^2.40.3",
"@alwaysmeticulous/common": "^2.40.0",
"@alwaysmeticulous/client": "^2.40.0",
"@alwaysmeticulous/download-helpers": "^2.40.0",
"@alwaysmeticulous/downloading-helpers": "^2.40.0",
"@alwaysmeticulous/sdk-bundles-api": "^2.40.0",
"@alwaysmeticulous/sentry": "^2.40.0",
"@alwaysmeticulous/replayer": "^2.40.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
getOrFetchRecordedSession,
getOrFetchRecordedSessionData,
sanitizeFilename,
} from "@alwaysmeticulous/download-helpers";
} from "@alwaysmeticulous/downloading-helpers";
import {
replayEvents,
ReplayEventsDependencies,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
ScreenshotDiffResult,
ScreenshotIdentifier,
} from "@alwaysmeticulous/api";
import { downloadFile } from "@alwaysmeticulous/download-helpers";
import { downloadFile } from "@alwaysmeticulous/downloading-helpers";
import { AxiosInstance } from "axios";
import log from "loglevel";
import { getBaseScreenshots } from "../../api/test-run.api";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { fetchAsset } from "@alwaysmeticulous/download-helpers";
import { fetchAsset } from "@alwaysmeticulous/downloading-helpers";
import { ReplayEventsDependencies } from "@alwaysmeticulous/replayer";

export const loadReplayEventsDependencies =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { defer, METICULOUS_LOGGER_NAME } from "@alwaysmeticulous/common";
import {
getOrFetchReplayArchive,
getReplayDir,
} from "@alwaysmeticulous/download-helpers";
} from "@alwaysmeticulous/downloading-helpers";
import { AxiosInstance } from "axios";
import express from "express";
import findFreePort from "find-free-port";
Expand Down

0 comments on commit c9946a7

Please sign in to comment.