Skip to content

Commit 6259501

Browse files
committed
fixed name and version
1 parent 544f926 commit 6259501

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

esbuild.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ esbuild.build({
1515
banner: {
1616
js: banner,
1717
},
18-
entryPoints: ['main.ts'],
18+
entryPoints: ['src/main.ts'],
1919
bundle: true,
2020
external: [
2121
'obsidian',
@@ -38,5 +38,5 @@ esbuild.build({
3838
logLevel: "info",
3939
sourcemap: prod ? false : 'inline',
4040
treeShaking: true,
41-
outfile: 'main.js',
41+
outfile: 'build/main.js',
4242
}).catch(() => process.exit(1));

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"id": "custom-file-extensions",
2+
"id": "obsidian-custom-file-extensions-plugin",
33
"name": "Custom File Extensions Plugin",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"minAppVersion": "0.10.12",
66
"description": "Associate views with custom file extensions via settings.",
77
"author": "Meep.Tech",

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "obsidian-custom-file-extensions-plugin",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Associate views with custom file extensions via settings.",
5-
"main": "main.js",
5+
"main": "src/main.js",
66
"scripts": {
77
"dev": "node esbuild.config.mjs",
88
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",

tests/vault/.obsidian/plugins/custom-file-extensions/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"id": "custom-file-extensions",
2+
"id": "obsidian-custom-file-extensions-plugin",
33
"name": "Custom File Extensions Plugin",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"minAppVersion": "0.10.12",
66
"description": "Associate views with custom file extensions via settings.",
77
"author": "Meep.Tech",

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
]
2020
},
2121
"include": [
22-
"**/*.ts"
22+
"src/main.ts"
2323
]
2424
}

versions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"1.0.0": "0.15.0"
2+
"1.0.0": "0.15.0",
3+
"1.0.1": "0.15.0"
34
}

0 commit comments

Comments
 (0)