Skip to content

Commit

Permalink
Merge pull request #50 from TeenBiscuits/main
Browse files Browse the repository at this point in the history
Change cachePath string declaration
  • Loading branch information
goenning committed Apr 15, 2024
2 parents db98be4 + 170b034 commit c2dd31c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/shared/gsc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function convertToSiteUrl(input: string) {
* @returns The converted file path
*/
export function convertToFilePath(path: string) {
return path.replace("http://", "http_").replace("https://", "https_").replace("/", "_");
return path.replace("http://", "http_").replace("https://", "https_").replaceAll("/", "_");
}

/**
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"lib": ["dom", "es6", "es2017", "esnext.asynciterable"],
"lib": ["dom", "es6", "es2021", "esnext.asynciterable"],
"skipLibCheck": true,
"sourceMap": true,
"outDir": "./dist",
Expand Down

0 comments on commit c2dd31c

Please sign in to comment.