Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
julienmalard committed Jul 15, 2024
1 parent 157948d commit a869cb7
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"test": "pnpm test:node && pnpm test:browser",
"test:node": "pnpm compile && pnpm aegir test -t node --cov -- --exit",
"test:browser": "pnpm compile && pnpm aegir test -t browser --cov -- --exit",
"format": "pnpm prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\" && pnpm eslint --ext .js,.ts src",
"format": "pnpm prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\" && pnpm eslint",
"release": "pnpm test && pnpm compile:prod && (git commit -a -m 'version' || true) && pnpm publish",
"updateVersion": "pnpm genversion --es6 --semi src/version.ts"
},
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated by genversion.
export const version = "1.0.0";
export const version = "1.0.1";
2 changes: 1 addition & 1 deletion test/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,5 +86,5 @@ export const createTestHelia = async ({
blockBrokers: [bitswap()],
};

return await createHelia({ ...heliaOptions }) as unknown as HeliaLibp2p;
return (await createHelia({ ...heliaOptions })) as unknown as HeliaLibp2p;
};
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"noUnusedLocals": false,
"noUnusedParameters": false,
"paths": {
"@/*": ["src/*"],
"@/*": ["src/*"]
},
"outDir": "./dist",
"sourceMap": true,
Expand All @@ -30,8 +30,8 @@

"plugins": [
{ "transform": "typescript-transform-paths" },
{ "transform": "typescript-transform-paths", "afterDeclarations": true },
],
{ "transform": "typescript-transform-paths", "afterDeclarations": true }
]
},
"include": ["src", "@types", "test"],
"include": ["src", "@types", "test"]
}

0 comments on commit a869cb7

Please sign in to comment.