Rocky_Mountain_Vending/.pnpm-store/v10/files/33/3d93d42afbad52ce876c23b4c8e8fb9563b40cc282e870c2d50c74f98e4ae0fff73a8ee5585930b803c42f5c99226ffc0c7f7cf9ce22d0bcbdfff8a4a2294f
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

56 lines
No EOL
1.6 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
0 && (module.exports = {
getVersionInfo: null,
matchNextPageBundleRequest: null
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
getVersionInfo: function() {
return getVersionInfo;
},
matchNextPageBundleRequest: function() {
return matchNextPageBundleRequest;
}
});
const _pathmatch = require("../../shared/lib/router/utils/path-match");
const _parseversioninfo = require("./parse-version-info");
const matchNextPageBundleRequest = (0, _pathmatch.getPathMatch)('/_next/static/chunks/pages/:path*.js(\\.map|)');
async function getVersionInfo() {
let installed = '0.0.0';
try {
installed = require('next/package.json').version;
let res;
try {
// use NPM registry regardless user using Yarn
res = await fetch('https://registry.npmjs.org/-/package/next/dist-tags');
} catch {
// ignore fetch errors
}
if (!res || !res.ok) return {
installed,
staleness: 'unknown'
};
const { latest, canary } = await res.json();
return (0, _parseversioninfo.parseVersionInfo)({
installed,
latest,
canary
});
} catch (e) {
console.error(e);
return {
installed,
staleness: 'unknown'
};
}
}
//# sourceMappingURL=hot-reloader-shared-utils.js.map