File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -2,14 +2,13 @@ import esbuild from "esbuild";
22import process from "process" ;
33import builtins from "builtin-modules" ;
44
5- const banner =
6- `/*
5+ const banner = `/*
76THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
87if 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
1413const 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+ }
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments