mirror of
https://github.com/idanoo/GoScrobble
synced 2025-07-01 13:42:20 +00:00
0.2.0 - Mid migration
This commit is contained in:
parent
139e6a915e
commit
7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions
3292
web/node_modules/rollup-pluginutils/dist/pluginutils.cjs.js
generated
vendored
Normal file
3292
web/node_modules/rollup-pluginutils/dist/pluginutils.cjs.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
39
web/node_modules/rollup-pluginutils/dist/pluginutils.d.ts
generated
vendored
Normal file
39
web/node_modules/rollup-pluginutils/dist/pluginutils.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
import { Node } from 'estree-walker';
|
||||
|
||||
export interface AttachedScope {
|
||||
parent?: AttachedScope;
|
||||
isBlockScope: boolean;
|
||||
declarations: { [key: string]: boolean };
|
||||
addDeclaration(node: Node, isBlockDeclaration: boolean, isVar: boolean): void;
|
||||
contains(name: string): boolean;
|
||||
}
|
||||
|
||||
export interface DataToEsmOptions {
|
||||
compact?: boolean;
|
||||
indent?: string;
|
||||
namedExports?: boolean;
|
||||
objectShorthand?: boolean;
|
||||
preferConst?: boolean;
|
||||
}
|
||||
|
||||
export type AddExtension = (filename: string, ext?: string) => string;
|
||||
export const addExtension: AddExtension;
|
||||
|
||||
export type AttachScopes = (ast: Node, propertyName?: string) => AttachedScope;
|
||||
export const attachScopes: AttachScopes;
|
||||
|
||||
export type CreateFilter = (
|
||||
include?: Array<string | RegExp> | string | RegExp | null,
|
||||
exclude?: Array<string | RegExp> | string | RegExp | null,
|
||||
options?: { resolve?: string | false | null }
|
||||
) => (id: string | any) => boolean;
|
||||
export const createFilter: CreateFilter;
|
||||
|
||||
export type MakeLegalIdentifier = (str: string) => string;
|
||||
export const makeLegalIdentifier: MakeLegalIdentifier;
|
||||
|
||||
export type DataToEsm = (data: any, options?: DataToEsmOptions) => string;
|
||||
export const dataToEsm: DataToEsm;
|
||||
|
||||
export type ExtractAssignedNames = (param: Node) => Array<string>;
|
||||
export const extractAssignedNames: ExtractAssignedNames;
|
3280
web/node_modules/rollup-pluginutils/dist/pluginutils.es.js
generated
vendored
Normal file
3280
web/node_modules/rollup-pluginutils/dist/pluginutils.es.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue