diff --git a/eslint.config.js b/eslint.config.js index bb9429f..fcea8f2 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -6,13 +6,14 @@ import globals from 'globals'; export default [ js.configs.recommended, { - files: ['**/*.ts'], + files: ['**/*.ts', '**/*.mjs'], languageOptions: { parser: tsParser, sourceType: 'module', globals: { ...globals.browser, - ...globals.node + ...globals.node, + process: "readonly" } }, plugins: { diff --git a/manifest.json b/manifest.json index a82288f..cea8a1e 100644 --- a/manifest.json +++ b/manifest.json @@ -1,10 +1,11 @@ { "id": "filename-styler", "name": "FileName Styler", - "version": "1.0.0", + "version": "1.0.1", "minAppVersion": "1.8.9", "description": "Customize and style file names in the file explorer using patterns, prefixes, suffixes, colors, and icons.", "author": "Marc Feininger", "authorUrl": "https://github.com/marc-f/obsidian-file-name-styler", - "main": "main.js" + "main": "main.js", + "isDesktopOnly": false } diff --git a/package.json b/package.json index 56b9c74..bbf15bf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "filename-styler", - "version": "1.0.0", + "version": "1.0.1", "type": "module", "description": "An Obsidian plugin to style filenames based on ID patterns, colors, icons, and more.", "main": "main.js", @@ -8,7 +8,7 @@ "dev": "node esbuild.config.mjs", "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", "version": "node version-bump.mjs && git add manifest.json versions.json", - "lint": "eslint . --ext .ts" + "lint": "eslint \"**/*.ts\" \"*.mjs\"" }, "keywords": [ "obsidian", diff --git a/versions.json b/versions.json index 7a0e153..ba311c2 100644 --- a/versions.json +++ b/versions.json @@ -1,3 +1,4 @@ { - "1.0.0": "1.8.9" -} + "1.0.0": "1.8.9", + "1.0.1": "1.8.9" +} \ No newline at end of file