Add <%br= %> jqhtml syntax docs, class override detection, npm update
Document event handler placement and model fetch clarification 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
24
node_modules/@babel/helper-plugin-utils/lib/index.js
generated
vendored
24
node_modules/@babel/helper-plugin-utils/lib/index.js
generated
vendored
@@ -10,17 +10,15 @@ const apiPolyfills = {
|
||||
throwVersionError(range, api.version);
|
||||
}
|
||||
};
|
||||
{
|
||||
Object.assign(apiPolyfills, {
|
||||
targets: () => () => {
|
||||
return {};
|
||||
},
|
||||
assumption: () => () => {
|
||||
return undefined;
|
||||
},
|
||||
addExternalDependency: () => () => {}
|
||||
});
|
||||
}
|
||||
Object.assign(apiPolyfills, {
|
||||
targets: () => () => {
|
||||
return {};
|
||||
},
|
||||
assumption: () => () => {
|
||||
return undefined;
|
||||
},
|
||||
addExternalDependency: () => () => {}
|
||||
});
|
||||
function declare(builder) {
|
||||
return (api, options, dirname) => {
|
||||
let clonedApi;
|
||||
@@ -35,7 +33,7 @@ function declare(builder) {
|
||||
const declarePreset = exports.declarePreset = declare;
|
||||
function copyApiObject(api) {
|
||||
let proto = null;
|
||||
if (typeof api.version === "string" && /^7\./.test(api.version)) {
|
||||
if (typeof api.version === "string" && api.version.startsWith("7.")) {
|
||||
proto = Object.getPrototypeOf(api);
|
||||
if (proto && (!hasOwnProperty.call(proto, "version") || !hasOwnProperty.call(proto, "transform") || !hasOwnProperty.call(proto, "template") || !hasOwnProperty.call(proto, "types"))) {
|
||||
proto = null;
|
||||
@@ -58,7 +56,7 @@ function throwVersionError(range, version) {
|
||||
Error.stackTraceLimit = 25;
|
||||
}
|
||||
let err;
|
||||
if (version.slice(0, 2) === "7.") {
|
||||
if (version.startsWith("7.")) {
|
||||
err = new Error(`Requires Babel "^7.0.0-beta.41", but was loaded with "${version}". ` + `You'll need to update your @babel/core version.`);
|
||||
} else {
|
||||
err = new Error(`Requires Babel "${range}", but was loaded with "${version}". ` + `If you are sure you have a compatible version of @babel/core, ` + `it is likely that something in your build process is loading the ` + `wrong version. Inspect the stack trace of this error to look for ` + `the first entry that doesn't mention "@babel/core" or "babel-core" ` + `to see what is calling Babel.`);
|
||||
|
||||
2
node_modules/@babel/helper-plugin-utils/lib/index.js.map
generated
vendored
2
node_modules/@babel/helper-plugin-utils/lib/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
4
node_modules/@babel/helper-plugin-utils/package.json
generated
vendored
4
node_modules/@babel/helper-plugin-utils/package.json
generated
vendored
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@babel/helper-plugin-utils",
|
||||
"version": "7.27.1",
|
||||
"version": "7.28.6",
|
||||
"description": "General utilities for plugins to use",
|
||||
"author": "The Babel Team (https://babel.dev/team)",
|
||||
"homepage": "https://babel.dev/docs/en/next/babel-helper-plugin-utils",
|
||||
@@ -18,7 +18,7 @@
|
||||
"node": ">=6.9.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.27.1"
|
||||
"@babel/core": "^7.28.6"
|
||||
},
|
||||
"type": "commonjs"
|
||||
}
|
||||
Reference in New Issue
Block a user