mirror of
https://github.com/SamEyeBam/animate.git
synced 2025-09-28 23:15:25 +00:00
larry babby and threejs for glsl
This commit is contained in:
21
webGl/my-threejs-test/node_modules/@parcel/plugin/LICENSE
generated
vendored
Normal file
21
webGl/my-threejs-test/node_modules/@parcel/plugin/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2017-present Devon Govett
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
77
webGl/my-threejs-test/node_modules/@parcel/plugin/lib/PluginAPI.js
generated
vendored
Normal file
77
webGl/my-threejs-test/node_modules/@parcel/plugin/lib/PluginAPI.js
generated
vendored
Normal file
@@ -0,0 +1,77 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.Validator = exports.Transformer = exports.Runtime = exports.Resolver = exports.Reporter = exports.Packager = exports.Optimizer = exports.Namer = exports.Compressor = exports.Bundler = void 0;
|
||||
const CONFIG = Symbol.for('parcel-plugin-config');
|
||||
class Transformer {
|
||||
constructor(opts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
exports.Transformer = Transformer;
|
||||
class Resolver {
|
||||
constructor(opts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
exports.Resolver = Resolver;
|
||||
class Bundler {
|
||||
constructor(opts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
exports.Bundler = Bundler;
|
||||
class Namer {
|
||||
constructor(opts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
exports.Namer = Namer;
|
||||
class Runtime {
|
||||
constructor(opts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
exports.Runtime = Runtime;
|
||||
class Validator {
|
||||
constructor(opts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
exports.Validator = Validator;
|
||||
class Packager {
|
||||
constructor(opts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
exports.Packager = Packager;
|
||||
class Optimizer {
|
||||
constructor(opts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
exports.Optimizer = Optimizer;
|
||||
class Compressor {
|
||||
constructor(opts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
exports.Compressor = Compressor;
|
||||
class Reporter {
|
||||
constructor(opts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
exports.Reporter = Reporter;
|
29
webGl/my-threejs-test/node_modules/@parcel/plugin/package.json
generated
vendored
Normal file
29
webGl/my-threejs-test/node_modules/@parcel/plugin/package.json
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
{
|
||||
"name": "@parcel/plugin",
|
||||
"version": "2.12.0",
|
||||
"license": "MIT",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"funding": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/parcel"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/parcel-bundler/parcel.git"
|
||||
},
|
||||
"main": "lib/PluginAPI.js",
|
||||
"source": "src/PluginAPI.js",
|
||||
"types": "src/PluginAPI.d.ts",
|
||||
"engines": {
|
||||
"node": ">= 12.0.0"
|
||||
},
|
||||
"scripts": {
|
||||
"check-ts": "tsc --noEmit src/PluginAPI.d.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@parcel/types": "2.12.0"
|
||||
},
|
||||
"gitHead": "2059029ee91e5f03a273b0954d3e629d7375f986"
|
||||
}
|
52
webGl/my-threejs-test/node_modules/@parcel/plugin/src/PluginAPI.d.ts
generated
vendored
Normal file
52
webGl/my-threejs-test/node_modules/@parcel/plugin/src/PluginAPI.d.ts
generated
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
import type {
|
||||
Transformer as TransformerOpts,
|
||||
Resolver as ResolverOpts,
|
||||
Bundler as BundlerOpts,
|
||||
Namer as NamerOpts,
|
||||
Runtime as RuntimeOpts,
|
||||
Packager as PackagerOpts,
|
||||
Optimizer as OptimizerOpts,
|
||||
Compressor as CompressorOpts,
|
||||
Reporter as ReporterOpts,
|
||||
Validator as ValidatorOpts,
|
||||
} from '@parcel/types';
|
||||
|
||||
export declare class Transformer<T> {
|
||||
constructor(opts: TransformerOpts<T>);
|
||||
}
|
||||
|
||||
export declare class Resolver<T> {
|
||||
constructor(opts: ResolverOpts<T>);
|
||||
}
|
||||
|
||||
export declare class Bundler<T> {
|
||||
constructor(opts: BundlerOpts<T>);
|
||||
}
|
||||
|
||||
export declare class Namer<T> {
|
||||
constructor(opts: NamerOpts<T>);
|
||||
}
|
||||
|
||||
export declare class Runtime<T> {
|
||||
constructor(opts: RuntimeOpts<T>);
|
||||
}
|
||||
|
||||
export declare class Validator<T> {
|
||||
constructor(opts: ValidatorOpts);
|
||||
}
|
||||
|
||||
export declare class Packager<C, B> {
|
||||
constructor(opts: PackagerOpts<C, B>);
|
||||
}
|
||||
|
||||
export declare class Optimizer<C, B> {
|
||||
constructor(opts: OptimizerOpts<C, B>);
|
||||
}
|
||||
|
||||
export declare class Compressor {
|
||||
constructor(opts: CompressorOpts);
|
||||
}
|
||||
|
||||
export declare class Reporter {
|
||||
constructor(opts: ReporterOpts);
|
||||
}
|
86
webGl/my-threejs-test/node_modules/@parcel/plugin/src/PluginAPI.js
generated
vendored
Normal file
86
webGl/my-threejs-test/node_modules/@parcel/plugin/src/PluginAPI.js
generated
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
// @flow strict-local
|
||||
|
||||
import type {
|
||||
Transformer as TransformerOpts,
|
||||
Resolver as ResolverOpts,
|
||||
Bundler as BundlerOpts,
|
||||
Namer as NamerOpts,
|
||||
Runtime as RuntimeOpts,
|
||||
Packager as PackagerOpts,
|
||||
Optimizer as OptimizerOpts,
|
||||
Compressor as CompressorOpts,
|
||||
Reporter as ReporterOpts,
|
||||
Validator as ValidatorOpts,
|
||||
} from '@parcel/types';
|
||||
|
||||
const CONFIG = Symbol.for('parcel-plugin-config');
|
||||
|
||||
export class Transformer {
|
||||
constructor<T>(opts: TransformerOpts<T>) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
|
||||
export class Resolver {
|
||||
constructor<T>(opts: ResolverOpts<T>) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
|
||||
export class Bundler {
|
||||
constructor<T>(opts: BundlerOpts<T>) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
|
||||
export class Namer {
|
||||
constructor<T>(opts: NamerOpts<T>) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
|
||||
export class Runtime {
|
||||
constructor<T>(opts: RuntimeOpts<T>) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
|
||||
export class Validator {
|
||||
constructor(opts: ValidatorOpts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
|
||||
export class Packager {
|
||||
constructor<T, U>(opts: PackagerOpts<T, U>) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
|
||||
export class Optimizer {
|
||||
constructor<T, U>(opts: OptimizerOpts<T, U>) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
|
||||
export class Compressor {
|
||||
constructor(opts: CompressorOpts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
||||
|
||||
export class Reporter {
|
||||
constructor(opts: ReporterOpts) {
|
||||
// $FlowFixMe
|
||||
this[CONFIG] = opts;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user