Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
171
Frontend-Learner/node_modules/@nuxt/telemetry/dist/cli.cjs
generated
vendored
Normal file
171
Frontend-Learner/node_modules/@nuxt/telemetry/dist/cli.cjs
generated
vendored
Normal file
|
|
@ -0,0 +1,171 @@
|
|||
'use strict';
|
||||
|
||||
const fs = require('node:fs');
|
||||
const os = require('node:os');
|
||||
const pathe = require('pathe');
|
||||
const destr = require('destr');
|
||||
const rc = require('rc9');
|
||||
const utils = require('consola/utils');
|
||||
const consola = require('consola');
|
||||
const kit = require('@nuxt/kit');
|
||||
const stdEnv = require('std-env');
|
||||
const dotenv = require('dotenv');
|
||||
const citty = require('citty');
|
||||
const consent = require('./shared/telemetry.BS0NLRIM.cjs');
|
||||
require('is-docker');
|
||||
|
||||
function _interopNamespaceCompat(e) {
|
||||
if (e && typeof e === 'object' && 'default' in e) return e;
|
||||
const n = Object.create(null);
|
||||
if (e) {
|
||||
for (const k in e) {
|
||||
n[k] = e[k];
|
||||
}
|
||||
}
|
||||
n.default = e;
|
||||
return n;
|
||||
}
|
||||
|
||||
const rc__namespace = /*#__PURE__*/_interopNamespaceCompat(rc);
|
||||
|
||||
const RC_FILENAME = ".nuxtrc";
|
||||
const sharedArgs = {
|
||||
global: {
|
||||
type: "boolean",
|
||||
alias: "g",
|
||||
description: "Apply globally"
|
||||
},
|
||||
dir: {
|
||||
type: "positional",
|
||||
default: "."
|
||||
}
|
||||
};
|
||||
const main = citty.createMain({
|
||||
meta: {
|
||||
name: "nuxt-telemetry",
|
||||
description: "Manage consent for Nuxt collecting anonymous telemetry data about general usage.",
|
||||
version: consent.version
|
||||
},
|
||||
subCommands: {
|
||||
status: citty.defineCommand({
|
||||
meta: {
|
||||
name: "status",
|
||||
description: "Show telemetry status"
|
||||
},
|
||||
args: sharedArgs,
|
||||
async run({ args }) {
|
||||
ensureNuxtProject(args);
|
||||
const dir = pathe.resolve(args.dir);
|
||||
await showStatus(dir, args.global);
|
||||
}
|
||||
}),
|
||||
enable: citty.defineCommand({
|
||||
meta: {
|
||||
name: "enable",
|
||||
description: "Enable telemetry"
|
||||
},
|
||||
args: sharedArgs,
|
||||
async run({ args }) {
|
||||
ensureNuxtProject(args);
|
||||
const dir = pathe.resolve(args.dir);
|
||||
setRC(dir, "telemetry.enabled", true, args.global);
|
||||
setRC(dir, "telemetry.consent", consent.consentVersion, args.global);
|
||||
await showStatus(dir, args.global);
|
||||
consola.consola.info("You can disable telemetry with `npx nuxt-telemetry disable" + (args.global ? " --global" : args.dir ? " " + args.dir : "") + "`");
|
||||
}
|
||||
}),
|
||||
disable: citty.defineCommand({
|
||||
meta: {
|
||||
name: "disable",
|
||||
description: "Disable telemetry"
|
||||
},
|
||||
args: sharedArgs,
|
||||
async run({ args }) {
|
||||
ensureNuxtProject(args);
|
||||
const dir = pathe.resolve(args.dir);
|
||||
setRC(dir, "telemetry.enabled", false, args.global);
|
||||
setRC(dir, "telemetry.consent", 0, args.global);
|
||||
await showStatus(dir, args.global);
|
||||
consola.consola.info("You can enable telemetry with `npx nuxt-telemetry enable" + (args.global ? " --global" : args.dir ? " " + args.dir : "") + "`");
|
||||
}
|
||||
}),
|
||||
consent: citty.defineCommand({
|
||||
meta: {
|
||||
name: "consent",
|
||||
description: "Prompt for user consent"
|
||||
},
|
||||
args: sharedArgs,
|
||||
async run({ args }) {
|
||||
ensureNuxtProject(args);
|
||||
const dir = pathe.resolve(args.dir);
|
||||
const accepted = await consent.ensureUserconsent({});
|
||||
if (accepted && !args.global) {
|
||||
setRC(dir, "telemetry.enabled", true, args.global);
|
||||
setRC(dir, "telemetry.consent", consent.consentVersion, args.global);
|
||||
}
|
||||
await showStatus(dir, args.global);
|
||||
}
|
||||
})
|
||||
}
|
||||
});
|
||||
async function _checkDisabled(dir) {
|
||||
if (stdEnv.isTest) {
|
||||
return "because you are running in a test environment";
|
||||
}
|
||||
if (destr.destr(process.env.NUXT_TELEMETRY_DISABLED)) {
|
||||
return "by the `NUXT_TELEMETRY_DISABLED` environment variable";
|
||||
}
|
||||
const dotenvFile = pathe.resolve(dir, ".env");
|
||||
if (fs.existsSync(dotenvFile)) {
|
||||
const _env = dotenv.parse(fs.readFileSync(dotenvFile));
|
||||
if (destr.destr(_env.NUXT_TELEMETRY_DISABLED)) {
|
||||
return "by the `NUXT_TELEMETRY_DISABLED` environment variable set in " + dotenvFile;
|
||||
}
|
||||
}
|
||||
const disabledByConf = (conf) => conf.telemetry === false || conf.telemetry && conf.telemetry.enabled === false;
|
||||
try {
|
||||
const config = await kit.loadNuxtConfig({ cwd: dir });
|
||||
for (const layer of config._layers) {
|
||||
if (disabledByConf(layer.config)) {
|
||||
return "by " + config._layers[0].configFile;
|
||||
}
|
||||
}
|
||||
} catch {
|
||||
}
|
||||
if (disabledByConf(rc__namespace.read({ name: RC_FILENAME, dir }))) {
|
||||
return "by " + pathe.resolve(dir, RC_FILENAME);
|
||||
}
|
||||
if (disabledByConf(rc__namespace.readUser({ name: RC_FILENAME }))) {
|
||||
return "by " + pathe.resolve(os.homedir(), RC_FILENAME);
|
||||
}
|
||||
}
|
||||
async function showStatus(dir, global) {
|
||||
const disabled = await _checkDisabled(dir);
|
||||
if (disabled) {
|
||||
consola.consola.info(`Nuxt telemetry is ${utils.colors.yellow("disabled")} ${disabled}.`);
|
||||
} else {
|
||||
consola.consola.info(`Nuxt telemetry is ${utils.colors.green("enabled")}`, global ? "on your machine." : "in the current project.");
|
||||
}
|
||||
}
|
||||
function setRC(dir, key, val, global) {
|
||||
const update = { [key]: val };
|
||||
if (global) {
|
||||
rc__namespace.updateUser(update, RC_FILENAME);
|
||||
} else {
|
||||
rc__namespace.update(update, { name: RC_FILENAME, dir });
|
||||
}
|
||||
}
|
||||
async function ensureNuxtProject(args) {
|
||||
if (args.global) {
|
||||
return;
|
||||
}
|
||||
const dir = pathe.resolve(args.dir);
|
||||
const nuxtConfig = await kit.loadNuxtConfig({ cwd: dir });
|
||||
if (!nuxtConfig || !nuxtConfig._layers[0]?.configFile) {
|
||||
consola.consola.error("You are not in a Nuxt project.");
|
||||
consola.consola.info("You can try specifying a directory or by using the `--global` flag to configure telemetry for your machine.");
|
||||
process.exit();
|
||||
}
|
||||
}
|
||||
|
||||
exports.main = main;
|
||||
Loading…
Add table
Add a link
Reference in a new issue