- Node/Express/TypeScript API under /api/v1 with JWT auth (login, refresh, logout, /me) - Prisma schema: vendors, users, roles, products, categories, taxes, transactions - SQLite for local dev; Postgres via docker-compose for production - Full CRUD routes for vendors, users, categories, taxes, products with Zod validation and RBAC - Paginated list endpoints scoped per vendor; refresh token rotation - React/TypeScript admin SPA (Vite): login, protected routing, sidebar layout - Pages: Dashboard, Catalog (tabbed Products/Categories/Taxes), Users, Vendor Settings - Shared UI: Table, Modal, FormField, Btn, PageHeader components - Multi-stage Dockerfile; docker-compose with Postgres healthcheck - Seed script with demo vendor and owner account - INSTRUCTIONS.md, ROADMAP.md, .claude/launch.json for dev server config Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
62 lines
1.5 KiB
JavaScript
62 lines
1.5 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _helperPluginUtils = require("@babel/helper-plugin-utils");
|
|
var _core = require("@babel/core");
|
|
const TRACE_ID = "__self";
|
|
function getThisFunctionParent(path) {
|
|
let scope = path.scope;
|
|
do {
|
|
const {
|
|
path
|
|
} = scope;
|
|
if (path.isFunctionParent() && !path.isArrowFunctionExpression()) {
|
|
return path;
|
|
}
|
|
} while (scope = scope.parent);
|
|
return null;
|
|
}
|
|
function isDerivedClass(classPath) {
|
|
return classPath.node.superClass !== null;
|
|
}
|
|
function isThisAllowed(path) {
|
|
const parentMethodOrFunction = getThisFunctionParent(path);
|
|
if (parentMethodOrFunction === null) {
|
|
return true;
|
|
}
|
|
if (!parentMethodOrFunction.isMethod()) {
|
|
return true;
|
|
}
|
|
if (parentMethodOrFunction.node.kind !== "constructor") {
|
|
return true;
|
|
}
|
|
return !isDerivedClass(parentMethodOrFunction.parentPath.parentPath);
|
|
}
|
|
var _default = exports.default = (0, _helperPluginUtils.declare)(api => {
|
|
api.assertVersion(7);
|
|
const visitor = {
|
|
JSXOpeningElement(path) {
|
|
if (!isThisAllowed(path)) {
|
|
return;
|
|
}
|
|
const node = path.node;
|
|
const id = _core.types.jsxIdentifier(TRACE_ID);
|
|
const trace = _core.types.thisExpression();
|
|
node.attributes.push(_core.types.jsxAttribute(id, _core.types.jsxExpressionContainer(trace)));
|
|
}
|
|
};
|
|
return {
|
|
name: "transform-react-jsx-self",
|
|
visitor: {
|
|
Program(path) {
|
|
path.traverse(visitor);
|
|
}
|
|
}
|
|
};
|
|
});
|
|
|
|
//# sourceMappingURL=index.js.map
|