Skip to content

Commit 2ac398f

Browse files
committed
feat: upgrade to 0.8.0
1 parent 5de0b71 commit 2ac398f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

esbuild.config.mjs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ import esbuild from "esbuild";
22
import process from "process";
33
import builtins from "builtin-modules";
44

5-
const banner =
6-
`/*
5+
const banner = `/*
76
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
87
if you want to view the source, please visit the github repository of this plugin
98
*/
109
`;
1110

12-
const prod = (process.argv[2] === "production");
11+
const prod = process.argv[2] === "production";
1312

1413
const context = await esbuild.context({
1514
banner: {
@@ -31,7 +30,8 @@ const context = await esbuild.context({
3130
"@lezer/common",
3231
"@lezer/highlight",
3332
"@lezer/lr",
34-
...builtins],
33+
...builtins,
34+
],
3535
format: "cjs",
3636
target: "es2018",
3737
logLevel: "info",
@@ -46,4 +46,4 @@ if (prod) {
4646
process.exit(0);
4747
} else {
4848
await context.watch();
49-
}
49+
}

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "contribution-graph",
33
"name": "Contribution Graph",
4-
"version": "0.7.0",
4+
"version": "0.8.0",
55
"minAppVersion": "1.3.0",
66
"description": "Generate a interactive heatmap graph to visualize and track your productivity",
77
"author": "vran",

0 commit comments

Comments
 (0)