Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2ec297a

Browse files
committedFeb 23, 2024
Fix prettier
1 parent 893c814 commit 2ec297a

File tree

3 files changed

+5
-4550
lines changed

3 files changed

+5
-4550
lines changed
 

‎.prettierignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ dist/
66
.mesh/
77
/.husky/_/
88
.bob/
9+
.yarn

‎packages/types/src/config-schema.ts

-4,549
This file was deleted.

‎scripts/remove-node-libcurl.cjs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
const fs = require('fs');
22
const path = require('path');
33

4-
const packageJson = fs.readFileSync(path.join(__dirname, '../packages/legacy/cli/package.json'), 'utf8');
4+
const packageJson = fs.readFileSync(
5+
path.join(__dirname, '../packages/legacy/cli/package.json'),
6+
'utf8',
7+
);
58
const packageJsonParsed = JSON.parse(packageJson);
69
delete packageJsonParsed.dependencies['node-libcurl'];
710
fs.writeFileSync(

0 commit comments

Comments
 (0)
Please sign in to comment.