Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardsph committed Jan 9, 2025
1 parent eca142f commit 470bc69
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
/.next
/e2e/test-app/.next
src/cache/purposesParsed.ts
/dist
3 changes: 1 addition & 2 deletions scripts/preparePurposes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ async function main() {
}

const cachePath = process.argv[2];
console.log('Path for cached purposes file: ', cachePath);
console.log("Path for cached purposes file: ", cachePath);

if (!fs.existsSync(cachePath)) {
fs.mkdirSync(cachePath);
Expand All @@ -50,7 +50,6 @@ async function main() {
path.join(cachePath, "purposesParsed.ts"),
`export default ${JSON.stringify(cache, null, 2)}`
);

}

main().catch((e) => {
Expand Down
4 changes: 1 addition & 3 deletions tsconfig.scripts.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
"moduleResolution": "nodenext",
"outDir": "./dist"
},
"include": [
"scripts/*.ts"
],
"include": ["scripts/*.ts"],
"exclude": ["node_modules"]
}

0 comments on commit 470bc69

Please sign in to comment.