mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-27 22:45:25 +00:00
larry babby and threejs for glsl
This commit is contained in:
5193
webGl/my-threejs-test/node_modules/@parcel/package-manager/lib/index.js
generated
vendored
Normal file
5193
webGl/my-threejs-test/node_modules/@parcel/package-manager/lib/index.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
webGl/my-threejs-test/node_modules/@parcel/package-manager/lib/index.js.map
generated
vendored
Normal file
1
webGl/my-threejs-test/node_modules/@parcel/package-manager/lib/index.js.map
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
47
webGl/my-threejs-test/node_modules/@parcel/package-manager/lib/types.d.ts
generated
vendored
Normal file
47
webGl/my-threejs-test/node_modules/@parcel/package-manager/lib/types.d.ts
generated
vendored
Normal file
@@ -0,0 +1,47 @@
|
||||
import type { FilePath, FileCreateInvalidation, SemverRange, DependencySpecifier, PackageJSON } from "@parcel/types";
|
||||
import type { FileSystem } from "@parcel/fs";
|
||||
export type ResolveResult = {
|
||||
resolved: FilePath | DependencySpecifier;
|
||||
pkg?: PackageJSON | null | undefined;
|
||||
invalidateOnFileCreate: Array<FileCreateInvalidation>;
|
||||
invalidateOnFileChange: Set<FilePath>;
|
||||
type: number;
|
||||
};
|
||||
export type InstallOptions = {
|
||||
installPeers?: boolean;
|
||||
saveDev?: boolean;
|
||||
packageInstaller?: PackageInstaller | null | undefined;
|
||||
};
|
||||
export type InstallerOptions = {
|
||||
modules: Array<ModuleRequest>;
|
||||
fs: FileSystem;
|
||||
cwd: FilePath;
|
||||
packagePath?: FilePath | null | undefined;
|
||||
saveDev?: boolean;
|
||||
};
|
||||
export interface PackageInstaller {
|
||||
install(opts: InstallerOptions): Promise<void>;
|
||||
}
|
||||
export type Invalidations = {
|
||||
invalidateOnFileCreate: Array<FileCreateInvalidation>;
|
||||
invalidateOnFileChange: Set<FilePath>;
|
||||
invalidateOnStartup: boolean;
|
||||
};
|
||||
export interface PackageManager {
|
||||
require(id: DependencySpecifier, from: FilePath, arg2: {
|
||||
range?: SemverRange | null | undefined;
|
||||
shouldAutoInstall?: boolean;
|
||||
saveDev?: boolean;
|
||||
} | null | undefined): Promise<any>;
|
||||
resolve(id: DependencySpecifier, from: FilePath, arg2: {
|
||||
range?: SemverRange | null | undefined;
|
||||
shouldAutoInstall?: boolean;
|
||||
saveDev?: boolean;
|
||||
} | null | undefined): Promise<ResolveResult>;
|
||||
getInvalidations(id: DependencySpecifier, from: FilePath): Invalidations;
|
||||
invalidate(id: DependencySpecifier, from: FilePath): void;
|
||||
}
|
||||
export type ModuleRequest = {
|
||||
readonly name: string;
|
||||
readonly range: SemverRange | null | undefined;
|
||||
};
|
Reference in New Issue
Block a user