Skip to content

Commit

Permalink
style: formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurfiorette committed Feb 22, 2024
1 parent 0b0693c commit f6fd6a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export function contentsToString(
* @param strict If we should throw an error when a property is not found. Default is
* `true`
* @param separator The string used to interpolate and separate parameters
* @returns he compiled template function
* @returns He compiled template function
*/
export function compile<
P extends { [K in keyof P]: K extends 'children' ? Children : string }
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"types": "index.d.ts",
"scripts": {
"bench": "tsc -p tsconfig.benchmark.json && cp benchmark/package.json dist/benchmark/package.json && cd dist/benchmark && node index.js",
"test:exec": "c8 --reporter lcov --reporter text node --trace-warnings --enable-source-maps --test dist/test",
"format": "prettier --write .",
"test": "pnpm test:jsx && pnpm test:react-jsx",
"test:exec": "c8 --reporter lcov --reporter text node --trace-warnings --enable-source-maps --test dist/test",
"test:jsx": "tsc -p tsconfig.json && pnpm test:exec dist/test",
"test:only": "tsc; node --trace-warnings --test-only --test dist/test",
"test:react-jsx": "tsc -p ./tsconfig.jsxruntime.json && pnpm test:exec dist/test"
Expand Down

0 comments on commit f6fd6a8

Please sign in to comment.