Skip to content

Commit

Permalink
Merge pull request #261 from bradcush/ci/bun-coverage
Browse files Browse the repository at this point in the history
Ci/bun coverage
  • Loading branch information
bradcush authored Aug 14, 2023
2 parents 8c0e5a0 + 3ba8d64 commit bdc0d5a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ Unit testing: `bun test:unit`

## Linting

Linting using `tsc` and `eslint` is also automatically run as part of the
GitHub CI for both a commit push and pull request. It is also run locally
before committing using a pre-commit hook. There must be no errors for any pull
request to be merged into the main branch.
Linting using `eslint` is also automatically run as part of the GitHub CI for
both a commit push and pull request. It is also run locally before committing
using a pre-commit hook. There must be no errors for any pull request to be
merged into the main branch.

Linting: `bun lint`

Expand Down
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions meta/manifest/__tests__/generate.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ describe('generate', () => {
'tabGroups',
'tabs',
],
version: '0.1.45',
version: '0.1.46',
}),
]);
});
Expand Down Expand Up @@ -114,7 +114,7 @@ describe('generate', () => {
'tabGroups',
'tabs',
],
version: '0.1.45',
version: '0.1.46',
});
});
});
Expand Down
2 changes: 1 addition & 1 deletion meta/manifest/make.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function make(): Manifest {
'tabGroups',
'tabs',
],
version: '0.1.45',
version: '0.1.46',
};
return manifest;
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Mark tab manager",
"version": "0.1.45",
"version": "0.1.46",
"description": "Automatically group tabs by domain",
"repository": "https://github.com/bradcush/mark-tab-manager.git",
"author": "Bradley Cushing <[email protected]>",
Expand All @@ -9,7 +9,7 @@
"scripts": {
"build:dev": "bun meta:clean && bun meta:manifest && bun meta/dev.build.ts && bun meta:copy",
"build:prod": "bun meta:clean && bun meta:manifest && bun meta/prod.build.ts && bun meta:copy",
"lint": "tsc --noEmit && eslint --ext .ts,.json .",
"lint": "eslint --ext .ts,.json .",
"meta:clean": "rm -rf dist && rm -rf generated && mkdir generated",
"meta:copy": "cp generated/* dist && mkdir -p dist/icons && cp src/icons/* dist/icons",
"meta:manifest": "bun meta/manifest/run.ts --browser chromium > generated/manifest.json",
Expand All @@ -36,7 +36,7 @@
"@types/chrome": "^0.0.171",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"bun-types": "^0.6.13",
"bun-types": "^0.7.3",
"commander": "^7.2.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
Expand Down

0 comments on commit bdc0d5a

Please sign in to comment.