Skip to content

Commit

Permalink
style: apply new linter rules
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlj95 committed Nov 20, 2024
1 parent a936877 commit 6eaff2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions projects/ngx-meta/schematics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "ngx-meta schematics infra",
"scripts": {
"build": "tsc -p tsconfig.schematics.json",
"watch": "pnpm run build --watch",
"postbuild": "rsync -R **/schema.json collection.json migrations.json ../dist/schematics",
"test": "jest"
"test": "jest",
"watch": "pnpm run build --watch"
},
"packageManager": "[email protected]"
}
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ describe('get all typescript files', () => {

const getFilePathsFromResult = (
iterableIterator: ReturnType<typeof getAllTypescriptFiles>,
): ReadonlyArray<string> => [...iterableIterator].map(([filePath]) => filePath)
): readonly string[] => [...iterableIterator].map(([filePath]) => filePath)

0 comments on commit 6eaff2b

Please sign in to comment.