Skip to content

Commit

Permalink
CHG use dotenv in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
synoet authored and wabscale committed Mar 25, 2024
1 parent 434dc2b commit d8c9f8c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extension/EXTENSION_VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.4
0.4.8
Binary file added extension/bin/pincer-extension-0.4.8.vsix
Binary file not shown.
Binary file modified extension/bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"inlineCompletionsAdditions"
],
"name": "pincer-extension",
"version": "0.4.4",
"version": "0.4.8",
"publisher": "synoet",
"engines": {
"vscode": "^1.67.0"
Expand Down
3 changes: 3 additions & 0 deletions extension/scripts/updateVersion.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import { createClient } from "@supabase/supabase-js";
import { execSync } from "child_process";
import * as dotenv from "dotenv";
import * as fs from "fs";

dotenv.config();

const supabaseUrl = process.env.SUPABASE_URL;
const supabaseKey = process.env.SUPABASE_KEY;
const EXTENSION_VERSION_PATH = "./EXTENSION_VERSION";
Expand Down

0 comments on commit d8c9f8c

Please sign in to comment.