obsidian-dev-utils
Version:
This is the collection of useful functions that you can use for your Obsidian plugin development
197 lines (183 loc) • 8.58 kB
JavaScript
/*
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
if you want to view the source, please visit the github repository of this plugin
*/
(function initCjs() {
const globalThisRecord = globalThis;
globalThisRecord['__name'] ??= name;
const originalRequire = require;
if (originalRequire && !originalRequire.__isPatched) {
// eslint-disable-next-line no-global-assign, no-implicit-globals -- We need to patch the `require()` function.
require = Object.assign(
(id) => requirePatched(id),
originalRequire,
{
__isPatched: true
}
);
}
const newFuncs = {
__extractDefault() {
return extractDefault;
},
process() {
const browserProcess = {
browser: true,
cwd() {
return '/';
},
env: {},
platform: 'android'
};
return browserProcess;
}
};
for (const key of Object.keys(newFuncs)) {
globalThisRecord[key] ??= newFuncs[key]?.();
}
function name(obj) {
return obj;
}
function extractDefault(module) {
return module && module.__esModule && 'default' in module ? module.default : module;
}
const OBSIDIAN_BUILT_IN_MODULE_NAMES = [
'obsidian',
'@codemirror/autocomplete',
'@codemirror/collab',
'@codemirror/commands',
'@codemirror/language',
'@codemirror/lint',
'@codemirror/search',
'@codemirror/state',
'@codemirror/text',
'@codemirror/view',
'@lezer/common',
'@lezer/lr',
'@lezer/highlight'];
const DEPRECATED_OBSIDIAN_BUILT_IN_MODULE_NAMES = [
'@codemirror/closebrackets',
'@codemirror/comment',
'@codemirror/fold',
'@codemirror/gutter',
'@codemirror/highlight',
'@codemirror/history',
'@codemirror/matchbrackets',
'@codemirror/panel',
'@codemirror/rangeset',
'@codemirror/rectangular-selection',
'@codemirror/stream-parser',
'@codemirror/tooltip'];
function requirePatched(id) {
if (OBSIDIAN_BUILT_IN_MODULE_NAMES.includes(id) || DEPRECATED_OBSIDIAN_BUILT_IN_MODULE_NAMES.includes(id)) {
return originalRequire?.(id);
}
// eslint-disable-next-line @typescript-eslint/no-deprecated, @typescript-eslint/no-unnecessary-condition -- We need access to app here which might not be available yet.
if (globalThis?.app?.isMobile) {
if (id === 'process' || id === 'node:process') {
console.debug(`The most likely you can safely ignore this error. Module not found: ${id}. Fake process object is returned instead.`);
return globalThis.process;
}
} else {
const module = originalRequire?.(id);
if (module) {
return extractDefault(module);
}
}
console.debug(`The most likely you can safely ignore this error. Module not found: ${id}. Empty object is returned instead.`);
return {};
}
})();
;
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
var ScriptUtils_exports = {};
__export(ScriptUtils_exports, {
CliUtils: () => CliUtils,
CodeGenerator: () => CodeGenerator,
ESLint: () => ESLint,
Exec: () => Exec,
Fs: () => Fs,
JSON: () => JSON,
NodeModules: () => NodeModules,
Npm: () => Npm,
NpmPublish: () => NpmPublish,
NpmRun: () => NpmRun,
ObsidianDevUtilsRepoPaths: () => ObsidianDevUtilsRepoPaths,
Root: () => Root,
build: () => build,
cli: () => cli,
esbuild: () => esbuild,
format: () => format,
markdownlint: () => markdownlint,
spellcheck: () => spellcheck,
version: () => version
});
module.exports = __toCommonJS(ScriptUtils_exports);
var build = __toESM(__extractDefault(require('./build.cjs')), 1);
var cli = __toESM(__extractDefault(require('./cli.cjs')), 1);
var CliUtils = __toESM(__extractDefault(require('./CliUtils.cjs')), 1);
var CodeGenerator = __toESM(__extractDefault(require('./CodeGenerator.cjs')), 1);
var esbuild = __toESM(__extractDefault(require('./esbuild/index.cjs')), 1);
var ESLint = __toESM(__extractDefault(require('./ESLint/index.cjs')), 1);
var Exec = __toESM(__extractDefault(require('./Exec.cjs')), 1);
var format = __toESM(__extractDefault(require('./format.cjs')), 1);
var Fs = __toESM(__extractDefault(require('./Fs.cjs')), 1);
var JSON = __toESM(__extractDefault(require('./JSON.cjs')), 1);
var markdownlint = __toESM(__extractDefault(require('./markdownlint/index.cjs')), 1);
var NodeModules = __toESM(__extractDefault(require('./NodeModules.cjs')), 1);
var Npm = __toESM(__extractDefault(require('./Npm.cjs')), 1);
var NpmPublish = __toESM(__extractDefault(require('./NpmPublish.cjs')), 1);
var NpmRun = __toESM(__extractDefault(require('./NpmRun.cjs')), 1);
var ObsidianDevUtilsRepoPaths = __toESM(__extractDefault(require('./ObsidianDevUtilsRepoPaths.cjs')), 1);
var Root = __toESM(__extractDefault(require('./Root.cjs')), 1);
var spellcheck = __toESM(__extractDefault(require('./spellcheck.cjs')), 1);
var version = __toESM(__extractDefault(require('./version.cjs')), 1);
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
CliUtils,
CodeGenerator,
ESLint,
Exec,
Fs,
JSON,
NodeModules,
Npm,
NpmPublish,
NpmRun,
ObsidianDevUtilsRepoPaths,
Root,
build,
cli,
esbuild,
format,
markdownlint,
spellcheck,
version
});
//# sourceMappingURL=data:application/json;base64,ewogICJ2ZXJzaW9uIjogMywKICAic291cmNlcyI6IFsiLi4vLi4vLi4vLi4vc3JjL1NjcmlwdFV0aWxzL2luZGV4LnRzIl0sCiAgInNvdXJjZXNDb250ZW50IjogWyIvKiBUSElTIElTIEEgR0VORVJBVEVEL0JVTkRMRUQgRklMRSBCWSBCVUlMRCBTQ1JJUFQgKi9cblxuZXhwb3J0ICogYXMgYnVpbGQgZnJvbSAnLi9idWlsZC50cyc7XG5leHBvcnQgKiBhcyBjbGkgZnJvbSAnLi9jbGkudHMnO1xuZXhwb3J0ICogYXMgQ2xpVXRpbHMgZnJvbSAnLi9DbGlVdGlscy50cyc7XG5leHBvcnQgKiBhcyBDb2RlR2VuZXJhdG9yIGZyb20gJy4vQ29kZUdlbmVyYXRvci50cyc7XG5leHBvcnQgKiBhcyBlc2J1aWxkIGZyb20gJy4vZXNidWlsZC9pbmRleC50cyc7XG5leHBvcnQgKiBhcyBFU0xpbnQgZnJvbSAnLi9FU0xpbnQvaW5kZXgudHMnO1xuZXhwb3J0ICogYXMgRXhlYyBmcm9tICcuL0V4ZWMudHMnO1xuZXhwb3J0ICogYXMgZm9ybWF0IGZyb20gJy4vZm9ybWF0LnRzJztcbmV4cG9ydCAqIGFzIEZzIGZyb20gJy4vRnMudHMnO1xuZXhwb3J0ICogYXMgSlNPTiBmcm9tICcuL0pTT04udHMnO1xuZXhwb3J0ICogYXMgbWFya2Rvd25saW50IGZyb20gJy4vbWFya2Rvd25saW50L2luZGV4LnRzJztcbmV4cG9ydCAqIGFzIE5vZGVNb2R1bGVzIGZyb20gJy4vTm9kZU1vZHVsZXMudHMnO1xuZXhwb3J0ICogYXMgTnBtIGZyb20gJy4vTnBtLnRzJztcbmV4cG9ydCAqIGFzIE5wbVB1Ymxpc2ggZnJvbSAnLi9OcG1QdWJsaXNoLnRzJztcbmV4cG9ydCAqIGFzIE5wbVJ1biBmcm9tICcuL05wbVJ1bi50cyc7XG5leHBvcnQgKiBhcyBPYnNpZGlhbkRldlV0aWxzUmVwb1BhdGhzIGZyb20gJy4vT2JzaWRpYW5EZXZVdGlsc1JlcG9QYXRocy50cyc7XG5leHBvcnQgKiBhcyBSb290IGZyb20gJy4vUm9vdC50cyc7XG5leHBvcnQgKiBhcyBzcGVsbGNoZWNrIGZyb20gJy4vc3BlbGxjaGVjay50cyc7XG5leHBvcnQgKiBhcyB2ZXJzaW9uIGZyb20gJy4vdmVyc2lvbi50cyc7XG4iXSwKICAibWFwcGluZ3MiOiAiOzs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7OztBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFBQTtBQUFBO0FBQUE7QUFFQSxZQUF1QjtBQUN2QixVQUFxQjtBQUNyQixlQUEwQjtBQUMxQixvQkFBK0I7QUFDL0IsY0FBeUI7QUFDekIsYUFBd0I7QUFDeEIsV0FBc0I7QUFDdEIsYUFBd0I7QUFDeEIsU0FBb0I7QUFDcEIsV0FBc0I7QUFDdEIsbUJBQThCO0FBQzlCLGtCQUE2QjtBQUM3QixVQUFxQjtBQUNyQixpQkFBNEI7QUFDNUIsYUFBd0I7QUFDeEIsZ0NBQTJDO0FBQzNDLFdBQXNCO0FBQ3RCLGlCQUE0QjtBQUM1QixjQUF5QjsiLAogICJuYW1lcyI6IFtdCn0K