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:
347
webGl/my-threejs-test/node_modules/@parcel/transformer-postcss/lib/PostCSSTransformer.js
generated
vendored
Normal file
347
webGl/my-threejs-test/node_modules/@parcel/transformer-postcss/lib/PostCSSTransformer.js
generated
vendored
Normal file
@@ -0,0 +1,347 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
function _rust() {
|
||||
const data = require("@parcel/rust");
|
||||
_rust = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _utils() {
|
||||
const data = require("@parcel/utils");
|
||||
_utils = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _plugin() {
|
||||
const data = require("@parcel/plugin");
|
||||
_plugin = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _nullthrows() {
|
||||
const data = _interopRequireDefault(require("nullthrows"));
|
||||
_nullthrows = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _path() {
|
||||
const data = _interopRequireDefault(require("path"));
|
||||
_path = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _semver() {
|
||||
const data = _interopRequireDefault(require("semver"));
|
||||
_semver = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _postcssValueParser() {
|
||||
const data = _interopRequireDefault(require("postcss-value-parser"));
|
||||
_postcssValueParser = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
var _loadConfig = require("./loadConfig");
|
||||
var _constants = require("./constants");
|
||||
function _diagnostic() {
|
||||
const data = require("@parcel/diagnostic");
|
||||
_diagnostic = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
const COMPOSES_RE = /composes:.+from\s*("|').*("|')\s*;?/;
|
||||
const FROM_IMPORT_RE = /.+from\s*(?:"|')(.*)(?:"|')\s*;?/;
|
||||
const LEGACY_MODULE_RE = /@value|:export|(:global|:local|:import)(?!\s*\()/i;
|
||||
const MODULE_BY_NAME_RE = /\.module\./;
|
||||
var _default = exports.default = new (_plugin().Transformer)({
|
||||
loadConfig({
|
||||
config,
|
||||
options,
|
||||
logger
|
||||
}) {
|
||||
return (0, _loadConfig.load)({
|
||||
config,
|
||||
options,
|
||||
logger
|
||||
});
|
||||
},
|
||||
canReuseAST({
|
||||
ast
|
||||
}) {
|
||||
return ast.type === 'postcss' && _semver().default.satisfies(ast.version, _constants.POSTCSS_RANGE);
|
||||
},
|
||||
async parse({
|
||||
asset,
|
||||
config,
|
||||
options
|
||||
}) {
|
||||
let isLegacy = await isLegacyCssModule(asset);
|
||||
if (!config && !isLegacy) {
|
||||
return;
|
||||
}
|
||||
const postcss = await loadPostcss(options, asset.filePath);
|
||||
return {
|
||||
type: 'postcss',
|
||||
version: '8.2.1',
|
||||
program: postcss.parse(await asset.getCode(), {
|
||||
from: asset.filePath
|
||||
}).toJSON()
|
||||
};
|
||||
},
|
||||
async transform({
|
||||
asset,
|
||||
config,
|
||||
options,
|
||||
resolve,
|
||||
logger
|
||||
}) {
|
||||
asset.type = 'css';
|
||||
let isLegacy = await isLegacyCssModule(asset);
|
||||
if (isLegacy && !config) {
|
||||
config = {
|
||||
raw: {},
|
||||
filePath: '',
|
||||
hydrated: {
|
||||
plugins: [],
|
||||
from: asset.filePath,
|
||||
to: asset.filePath,
|
||||
modules: {}
|
||||
}
|
||||
};
|
||||
|
||||
// TODO: warning?
|
||||
}
|
||||
|
||||
if (!config) {
|
||||
return [asset];
|
||||
}
|
||||
const postcss = await loadPostcss(options, asset.filePath);
|
||||
let ast = (0, _nullthrows().default)(await asset.getAST());
|
||||
let program = postcss.fromJSON(ast.program);
|
||||
let plugins = [...config.hydrated.plugins];
|
||||
let cssModules = null;
|
||||
if (config.hydrated.modules) {
|
||||
asset.meta.cssModulesCompiled = 'postcss';
|
||||
let code = asset.isASTDirty() ? null : await asset.getCode();
|
||||
if (Object.keys(config.hydrated.modules).length === 0 && code && !isLegacy && !LEGACY_MODULE_RE.test(code)) {
|
||||
let filename = _path().default.basename(config.filePath);
|
||||
let message;
|
||||
let configKey;
|
||||
let hint;
|
||||
if (config.raw.modules) {
|
||||
message = (0, _diagnostic().md)`The "modules" option in __${filename}__ can be replaced with configuration for @parcel/transformer-css to improve build performance.`;
|
||||
configKey = '/modules';
|
||||
hint = (0, _diagnostic().md)`Remove the "modules" option from __${filename}__`;
|
||||
} else {
|
||||
message = (0, _diagnostic().md)`The "postcss-modules" plugin in __${filename}__ can be replaced with configuration for @parcel/transformer-css to improve build performance.`;
|
||||
configKey = '/plugins/postcss-modules';
|
||||
hint = (0, _diagnostic().md)`Remove the "postcss-modules" plugin from __${filename}__`;
|
||||
}
|
||||
if (filename === 'package.json') {
|
||||
configKey = `/postcss${configKey}`;
|
||||
}
|
||||
let hints = ['Enable the "cssModules" option for "@parcel/transformer-css" in your package.json'];
|
||||
if (plugins.length === 0) {
|
||||
message += (0, _diagnostic().md)` Since there are no other plugins, __${filename}__ can be deleted safely.`;
|
||||
hints.push((0, _diagnostic().md)`Delete __${filename}__`);
|
||||
} else {
|
||||
hints.push(hint);
|
||||
}
|
||||
let codeFrames;
|
||||
if (_path().default.extname(filename) !== '.js') {
|
||||
let contents = await asset.fs.readFile(config.filePath, 'utf8');
|
||||
codeFrames = [{
|
||||
language: 'json',
|
||||
filePath: config.filePath,
|
||||
code: contents,
|
||||
codeHighlights: (0, _diagnostic().generateJSONCodeHighlights)(contents, [{
|
||||
key: configKey,
|
||||
type: 'key'
|
||||
}])
|
||||
}];
|
||||
} else {
|
||||
codeFrames = [{
|
||||
filePath: config.filePath,
|
||||
codeHighlights: [{
|
||||
start: {
|
||||
line: 1,
|
||||
column: 1
|
||||
},
|
||||
end: {
|
||||
line: 1,
|
||||
column: 1
|
||||
}
|
||||
}]
|
||||
}];
|
||||
}
|
||||
logger.warn({
|
||||
message,
|
||||
hints,
|
||||
documentationURL: 'https://parceljs.org/languages/css/#enabling-css-modules-globally',
|
||||
codeFrames
|
||||
});
|
||||
}
|
||||
|
||||
// TODO: should this be resolved from the project root?
|
||||
let postcssModules = await options.packageManager.require('postcss-modules', asset.filePath, {
|
||||
range: '^4.3.0',
|
||||
saveDev: true,
|
||||
shouldAutoInstall: options.shouldAutoInstall
|
||||
});
|
||||
plugins.push(postcssModules({
|
||||
getJSON: (filename, json) => cssModules = json,
|
||||
Loader: await createLoader(asset, resolve, options),
|
||||
generateScopedName: (name, filename) => `${name}_${(0, _rust().hashString)(_path().default.relative(options.projectRoot, filename)).substr(0, 6)}`,
|
||||
...config.hydrated.modules
|
||||
}));
|
||||
if (code == null || COMPOSES_RE.test(code)) {
|
||||
program.walkDecls(decl => {
|
||||
let [, importPath] = FROM_IMPORT_RE.exec(decl.value) || [];
|
||||
if (decl.prop === 'composes' && importPath != null) {
|
||||
let parsed = (0, _postcssValueParser().default)(decl.value);
|
||||
parsed.walk(node => {
|
||||
if (node.type === 'string') {
|
||||
asset.addDependency({
|
||||
specifier: importPath,
|
||||
specifierType: 'url',
|
||||
loc: {
|
||||
filePath: asset.filePath,
|
||||
start: decl.source.start,
|
||||
end: {
|
||||
line: decl.source.start.line,
|
||||
column: decl.source.start.column + importPath.length
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
// $FlowFixMe Added in Flow 0.121.0 upgrade in #4381
|
||||
let {
|
||||
messages,
|
||||
root
|
||||
} = await postcss(plugins).process(program, config.hydrated);
|
||||
asset.setAST({
|
||||
type: 'postcss',
|
||||
version: '8.2.1',
|
||||
program: root.toJSON()
|
||||
});
|
||||
for (let msg of messages) {
|
||||
if (msg.type === 'dependency') {
|
||||
asset.invalidateOnFileChange(msg.file);
|
||||
} else if (msg.type === 'dir-dependency') {
|
||||
var _msg$glob;
|
||||
let pattern = `${msg.dir}/${(_msg$glob = msg.glob) !== null && _msg$glob !== void 0 ? _msg$glob : '**/*'}`;
|
||||
let files = await (0, _utils().glob)(pattern, asset.fs, {
|
||||
onlyFiles: true
|
||||
});
|
||||
for (let file of files) {
|
||||
asset.invalidateOnFileChange(_path().default.normalize(file));
|
||||
}
|
||||
asset.invalidateOnFileCreate({
|
||||
glob: pattern
|
||||
});
|
||||
}
|
||||
}
|
||||
let assets = [asset];
|
||||
if (cssModules) {
|
||||
// $FlowFixMe
|
||||
let cssModulesList = Object.entries(cssModules);
|
||||
let deps = asset.getDependencies().filter(dep => dep.priority === 'sync');
|
||||
let code;
|
||||
if (deps.length > 0) {
|
||||
code = `
|
||||
module.exports = Object.assign({}, ${deps.map(dep => `require(${JSON.stringify(dep.specifier)})`).join(', ')}, ${JSON.stringify(cssModules, null, 2)});
|
||||
`;
|
||||
} else {
|
||||
code = cssModulesList.map(
|
||||
// This syntax enables shaking the invidual statements, so that unused classes don't even exist in JS.
|
||||
([className, classNameHashed]) => `module.exports[${JSON.stringify(className)}] = ${JSON.stringify(classNameHashed)};`).join('\n');
|
||||
}
|
||||
asset.symbols.ensure();
|
||||
for (let [k, v] of cssModulesList) {
|
||||
asset.symbols.set(k, v);
|
||||
}
|
||||
asset.symbols.set('default', 'default');
|
||||
assets.push({
|
||||
type: 'js',
|
||||
content: code
|
||||
});
|
||||
}
|
||||
return assets;
|
||||
},
|
||||
async generate({
|
||||
asset,
|
||||
ast,
|
||||
options
|
||||
}) {
|
||||
const postcss = await loadPostcss(options, asset.filePath);
|
||||
let code = '';
|
||||
postcss.stringify(postcss.fromJSON(ast.program), c => {
|
||||
code += c;
|
||||
});
|
||||
return {
|
||||
content: code
|
||||
};
|
||||
}
|
||||
});
|
||||
async function createLoader(asset, resolve, options) {
|
||||
let {
|
||||
default: FileSystemLoader
|
||||
} = await options.packageManager.require('postcss-modules/build/css-loader-core/loader', asset.filePath);
|
||||
return class extends FileSystemLoader {
|
||||
async fetch(composesPath, relativeTo) {
|
||||
let importPath = composesPath.replace(/^["']|["']$/g, '');
|
||||
let resolved = await resolve(relativeTo, importPath);
|
||||
let rootRelativePath = _path().default.resolve(_path().default.dirname(relativeTo), resolved);
|
||||
let root = _path().default.resolve('/');
|
||||
// fixes an issue on windows which is part of the css-modules-loader-core
|
||||
// see https://github.com/css-modules/css-modules-loader-core/issues/230
|
||||
if (rootRelativePath.startsWith(root)) {
|
||||
rootRelativePath = rootRelativePath.substr(root.length);
|
||||
}
|
||||
let source = await asset.fs.readFile(resolved, 'utf-8');
|
||||
let {
|
||||
exportTokens
|
||||
} = await this.core.load(source, rootRelativePath, undefined,
|
||||
// $FlowFixMe[method-unbinding]
|
||||
this.fetch.bind(this));
|
||||
return exportTokens;
|
||||
}
|
||||
get finalSource() {
|
||||
return '';
|
||||
}
|
||||
};
|
||||
}
|
||||
function loadPostcss(options, from) {
|
||||
return options.packageManager.require('postcss', from, {
|
||||
range: _constants.POSTCSS_RANGE,
|
||||
saveDev: true,
|
||||
shouldAutoInstall: options.shouldAutoInstall
|
||||
});
|
||||
}
|
||||
async function isLegacyCssModule(asset) {
|
||||
if (!MODULE_BY_NAME_RE.test(asset.filePath)) {
|
||||
return false;
|
||||
}
|
||||
let code = await asset.getCode();
|
||||
return LEGACY_MODULE_RE.test(code);
|
||||
}
|
7
webGl/my-threejs-test/node_modules/@parcel/transformer-postcss/lib/constants.js
generated
vendored
Normal file
7
webGl/my-threejs-test/node_modules/@parcel/transformer-postcss/lib/constants.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.POSTCSS_RANGE = void 0;
|
||||
const POSTCSS_RANGE = exports.POSTCSS_RANGE = '^8.2.1';
|
162
webGl/my-threejs-test/node_modules/@parcel/transformer-postcss/lib/loadConfig.js
generated
vendored
Normal file
162
webGl/my-threejs-test/node_modules/@parcel/transformer-postcss/lib/loadConfig.js
generated
vendored
Normal file
@@ -0,0 +1,162 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.load = load;
|
||||
function _path() {
|
||||
const data = _interopRequireDefault(require("path"));
|
||||
_path = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _diagnostic() {
|
||||
const data = require("@parcel/diagnostic");
|
||||
_diagnostic = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _nullthrows() {
|
||||
const data = _interopRequireDefault(require("nullthrows"));
|
||||
_nullthrows = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
function _clone() {
|
||||
const data = _interopRequireDefault(require("clone"));
|
||||
_clone = function () {
|
||||
return data;
|
||||
};
|
||||
return data;
|
||||
}
|
||||
var _constants = require("./constants");
|
||||
var _loadPlugins = _interopRequireDefault(require("./loadPlugins"));
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
async function configHydrator(configFile, config, resolveFrom, options, logger) {
|
||||
if (configFile == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Load the custom config...
|
||||
let modulesConfig;
|
||||
let configFilePlugins = (0, _clone().default)(configFile.plugins);
|
||||
if (configFilePlugins != null && typeof configFilePlugins === 'object' && configFilePlugins['postcss-modules'] != null) {
|
||||
modulesConfig = configFilePlugins['postcss-modules'];
|
||||
delete configFilePlugins['postcss-modules'];
|
||||
}
|
||||
if (!modulesConfig && configFile.modules) {
|
||||
modulesConfig = {};
|
||||
}
|
||||
let plugins = await (0, _loadPlugins.default)(configFilePlugins, (0, _nullthrows().default)(resolveFrom), options);
|
||||
|
||||
// contents is either:
|
||||
// from JSON: { plugins: { 'postcss-foo': { ...opts } } }
|
||||
// from JS (v8): { plugins: [ { postcssPlugin: 'postcss-foo', ...visitor callback functions } ]
|
||||
// from JS (v7): { plugins: [ [Function: ...] ]
|
||||
let pluginArray = Array.isArray(configFilePlugins) ? configFilePlugins : Object.keys(configFilePlugins);
|
||||
for (let p of pluginArray) {
|
||||
if (typeof p === 'string') {
|
||||
config.addDevDependency({
|
||||
specifier: p,
|
||||
resolveFrom: (0, _nullthrows().default)(resolveFrom)
|
||||
});
|
||||
}
|
||||
}
|
||||
let redundantPlugins = pluginArray.filter(p => p === 'autoprefixer' || p === 'postcss-preset-env');
|
||||
if (redundantPlugins.length > 0) {
|
||||
let filename = _path().default.basename(resolveFrom);
|
||||
let isPackageJson = filename === 'package.json';
|
||||
let message;
|
||||
let hints = [];
|
||||
if (!isPackageJson && redundantPlugins.length === pluginArray.length) {
|
||||
message = (0, _diagnostic().md)`Parcel includes CSS transpilation and vendor prefixing by default. PostCSS config __${filename}__ contains only redundant plugins. Deleting it may significantly improve build performance.`;
|
||||
hints.push((0, _diagnostic().md)`Delete __${filename}__`);
|
||||
} else {
|
||||
message = (0, _diagnostic().md)`Parcel includes CSS transpilation and vendor prefixing by default. PostCSS config __${filename}__ contains the following redundant plugins: ${[...redundantPlugins].map(p => _diagnostic().md.underline(p))}. Removing these may improve build performance.`;
|
||||
hints.push((0, _diagnostic().md)`Remove the above plugins from __${filename}__`);
|
||||
}
|
||||
let codeFrames;
|
||||
if (_path().default.extname(filename) !== '.js') {
|
||||
let contents = await options.inputFS.readFile(resolveFrom, 'utf8');
|
||||
let prefix = isPackageJson ? '/postcss' : '';
|
||||
codeFrames = [{
|
||||
language: 'json',
|
||||
filePath: resolveFrom,
|
||||
code: contents,
|
||||
codeHighlights: (0, _diagnostic().generateJSONCodeHighlights)(contents, redundantPlugins.map(plugin => ({
|
||||
key: `${prefix}/plugins/${plugin}`,
|
||||
type: 'key'
|
||||
})))
|
||||
}];
|
||||
} else {
|
||||
codeFrames = [{
|
||||
filePath: resolveFrom,
|
||||
codeHighlights: [{
|
||||
start: {
|
||||
line: 1,
|
||||
column: 1
|
||||
},
|
||||
end: {
|
||||
line: 1,
|
||||
column: 1
|
||||
}
|
||||
}]
|
||||
}];
|
||||
}
|
||||
logger.warn({
|
||||
message,
|
||||
hints,
|
||||
documentationURL: 'https://parceljs.org/languages/css/#default-plugins',
|
||||
codeFrames
|
||||
});
|
||||
}
|
||||
return {
|
||||
raw: configFile,
|
||||
filePath: resolveFrom,
|
||||
hydrated: {
|
||||
plugins,
|
||||
from: config.searchPath,
|
||||
to: config.searchPath,
|
||||
modules: modulesConfig
|
||||
}
|
||||
};
|
||||
}
|
||||
async function load({
|
||||
config,
|
||||
options,
|
||||
logger
|
||||
}) {
|
||||
if (!config.isSource) {
|
||||
return;
|
||||
}
|
||||
let configFile = await config.getConfig(['.postcssrc', '.postcssrc.json', '.postcssrc.js', '.postcssrc.cjs', '.postcssrc.mjs', 'postcss.config.js', 'postcss.config.cjs', 'postcss.config.mjs'], {
|
||||
packageKey: 'postcss'
|
||||
});
|
||||
let contents = null;
|
||||
if (configFile) {
|
||||
config.addDevDependency({
|
||||
specifier: 'postcss',
|
||||
resolveFrom: config.searchPath,
|
||||
range: _constants.POSTCSS_RANGE
|
||||
});
|
||||
contents = configFile.contents;
|
||||
let isDynamic = configFile && _path().default.extname(configFile.filePath).endsWith('js');
|
||||
if (isDynamic) {
|
||||
// We have to invalidate on startup in case the config is non-deterministic,
|
||||
// e.g. using unknown environment variables, reading from the filesystem, etc.
|
||||
logger.warn({
|
||||
message: 'WARNING: Using a JavaScript PostCSS config file means losing out on caching features of Parcel. Use a .postcssrc(.json) file whenever possible.'
|
||||
});
|
||||
}
|
||||
if (typeof contents !== 'object') {
|
||||
throw new Error('PostCSS config should be an object.');
|
||||
}
|
||||
if (contents.plugins == null || typeof contents.plugins !== 'object' || Object.keys(contents.plugins).length === 0) {
|
||||
throw new Error('PostCSS config must have plugins');
|
||||
}
|
||||
}
|
||||
return configHydrator(contents, config, configFile === null || configFile === void 0 ? void 0 : configFile.filePath, options, logger);
|
||||
}
|
29
webGl/my-threejs-test/node_modules/@parcel/transformer-postcss/lib/loadPlugins.js
generated
vendored
Normal file
29
webGl/my-threejs-test/node_modules/@parcel/transformer-postcss/lib/loadPlugins.js
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = loadExternalPlugins;
|
||||
async function loadExternalPlugins(plugins, relative, options) {
|
||||
if (Array.isArray(plugins)) {
|
||||
return Promise.all(plugins.map(p => loadPlugin(p, relative, null, options.packageManager, options.shouldAutoInstall)).filter(Boolean));
|
||||
} else if (typeof plugins === 'object') {
|
||||
let mapPlugins = await Promise.all(Object.keys(plugins).map(p => loadPlugin(p, relative, plugins[p], options.packageManager, options.shouldAutoInstall)));
|
||||
return mapPlugins.filter(Boolean);
|
||||
} else {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
async function loadPlugin(pluginArg, relative, options = {}, packageManager, shouldAutoInstall) {
|
||||
if (typeof pluginArg !== 'string') {
|
||||
return pluginArg;
|
||||
}
|
||||
let plugin = await packageManager.require(pluginArg, relative, {
|
||||
shouldAutoInstall
|
||||
});
|
||||
plugin = plugin.default || plugin;
|
||||
if (options != null && typeof options === 'object' && Object.keys(options).length > 0) {
|
||||
plugin = plugin(options);
|
||||
}
|
||||
return plugin.default || plugin;
|
||||
}
|
Reference in New Issue
Block a user