mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-02 21:52:48 +00:00
refactor!: cleanup platform support (#306)
* refactor!: cleanup platform support * chore: lint * fix: web platform * feat: provide UniversalCache Provide UniversalCache as a wrapper around Platform.shim.Cache. * fix: invalid import * refactor: remove isolated-vm support * fix: type info * refactor: cleanup exports * fix: mark jintr as external dependency In the bundled CJS node build, mark jintr as external. * chore: add additional exports web exports provide a way to select web implementation manually without relying on the bundler to select it correctly from the "exports" field web points to src/platform/web.js web.bundle points to bundle/browser.js web.bundle.browser points to bundle/browser.min.js agnostic exports provide users of the library to provide their own platform implementation without first importing the default one. agnostic points to src/platform/lib.ts * fix: toDash on web * revert: eval is synchronous * fix: use serializeDOM in FormatUtils * ci: automate releases with `release-please` * chore: clean up workflow files * ci: fix NPM publish action --------- Co-authored-by: LuanRT <luan.lrt4@gmail.com>
This commit is contained in:
@@ -1,42 +1,42 @@
|
||||
import Constants from '../../utils/Constants';
|
||||
import Parser, { ParsedResponse } from '../index';
|
||||
import Constants from '../../utils/Constants.js';
|
||||
import Parser, { ParsedResponse } from '../index.js';
|
||||
|
||||
import TwoColumnWatchNextResults from '../classes/TwoColumnWatchNextResults';
|
||||
import VideoPrimaryInfo from '../classes/VideoPrimaryInfo';
|
||||
import VideoSecondaryInfo from '../classes/VideoSecondaryInfo';
|
||||
import TwoColumnWatchNextResults from '../classes/TwoColumnWatchNextResults.js';
|
||||
import VideoPrimaryInfo from '../classes/VideoPrimaryInfo.js';
|
||||
import VideoSecondaryInfo from '../classes/VideoSecondaryInfo.js';
|
||||
|
||||
import MerchandiseShelf from '../classes/MerchandiseShelf';
|
||||
import RelatedChipCloud from '../classes/RelatedChipCloud';
|
||||
import MerchandiseShelf from '../classes/MerchandiseShelf.js';
|
||||
import RelatedChipCloud from '../classes/RelatedChipCloud.js';
|
||||
|
||||
import ChipCloud from '../classes/ChipCloud';
|
||||
import ChipCloudChip from '../classes/ChipCloudChip';
|
||||
import CommentsEntryPointHeader from '../classes/comments/CommentsEntryPointHeader';
|
||||
import ContinuationItem from '../classes/ContinuationItem';
|
||||
import ItemSection from '../classes/ItemSection';
|
||||
import LiveChat from '../classes/LiveChat';
|
||||
import MicroformatData from '../classes/MicroformatData';
|
||||
import PlayerMicroformat from '../classes/PlayerMicroformat';
|
||||
import PlayerOverlay from '../classes/PlayerOverlay';
|
||||
import SegmentedLikeDislikeButton from '../classes/SegmentedLikeDislikeButton';
|
||||
import ToggleButton from '../classes/ToggleButton';
|
||||
import LiveChatWrap from './LiveChat';
|
||||
import ChipCloud from '../classes/ChipCloud.js';
|
||||
import ChipCloudChip from '../classes/ChipCloudChip.js';
|
||||
import CommentsEntryPointHeader from '../classes/comments/CommentsEntryPointHeader.js';
|
||||
import ContinuationItem from '../classes/ContinuationItem.js';
|
||||
import ItemSection from '../classes/ItemSection.js';
|
||||
import LiveChat from '../classes/LiveChat.js';
|
||||
import MicroformatData from '../classes/MicroformatData.js';
|
||||
import PlayerMicroformat from '../classes/PlayerMicroformat.js';
|
||||
import PlayerOverlay from '../classes/PlayerOverlay.js';
|
||||
import SegmentedLikeDislikeButton from '../classes/SegmentedLikeDislikeButton.js';
|
||||
import ToggleButton from '../classes/ToggleButton.js';
|
||||
import LiveChatWrap from './LiveChat.js';
|
||||
|
||||
import type CardCollection from '../classes/CardCollection';
|
||||
import type Endscreen from '../classes/Endscreen';
|
||||
import type Format from '../classes/misc/Format';
|
||||
import type PlayerAnnotationsExpanded from '../classes/PlayerAnnotationsExpanded';
|
||||
import type PlayerCaptionsTracklist from '../classes/PlayerCaptionsTracklist';
|
||||
import type PlayerLiveStoryboardSpec from '../classes/PlayerLiveStoryboardSpec';
|
||||
import type PlayerStoryboardSpec from '../classes/PlayerStoryboardSpec';
|
||||
import type CardCollection from '../classes/CardCollection.js';
|
||||
import type Endscreen from '../classes/Endscreen.js';
|
||||
import type Format from '../classes/misc/Format.js';
|
||||
import type PlayerAnnotationsExpanded from '../classes/PlayerAnnotationsExpanded.js';
|
||||
import type PlayerCaptionsTracklist from '../classes/PlayerCaptionsTracklist.js';
|
||||
import type PlayerLiveStoryboardSpec from '../classes/PlayerLiveStoryboardSpec.js';
|
||||
import type PlayerStoryboardSpec from '../classes/PlayerStoryboardSpec.js';
|
||||
|
||||
import type Player from '../../core/Player';
|
||||
import type Actions from '../../core/Actions';
|
||||
import type { ApiResponse } from '../../core/Actions';
|
||||
import type { ObservedArray, YTNode } from '../helpers';
|
||||
import type Player from '../../core/Player.js';
|
||||
import type Actions from '../../core/Actions.js';
|
||||
import type { ApiResponse } from '../../core/Actions.js';
|
||||
import type { ObservedArray, YTNode } from '../helpers.js';
|
||||
|
||||
import FormatUtils, { FormatOptions, DownloadOptions, URLTransformer, FormatFilter } from '../../utils/FormatUtils';
|
||||
import FormatUtils, { FormatOptions, DownloadOptions, URLTransformer, FormatFilter } from '../../utils/FormatUtils.js';
|
||||
|
||||
import { InnertubeError } from '../../utils/Utils';
|
||||
import { InnertubeError } from '../../utils/Utils.js';
|
||||
|
||||
class VideoInfo {
|
||||
#page: [ParsedResponse, ParsedResponse?];
|
||||
|
||||
Reference in New Issue
Block a user