Skip to content

Commit a20ed0a

Browse files
committed
Ignore docs folder in eslint.config.mjs
1 parent dd649bd commit a20ed0a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import tseslint from 'typescript-eslint';
33
import stylistic from '@stylistic/eslint-plugin';
44

55
export default tseslint.config(
6-
{ ignores: ['dist'] },
6+
{ ignores: ['dist', 'docs'] },
77
{
88
extends: [
99
js.configs.recommended,

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@
2121
"docs": "typedoc src/index.ts",
2222
"build": "tsup",
2323
"lint": "eslint . --ext .js,.ts,.mjs",
24-
"prepublishOnly": "npm run ci",
2524
"test": "vitest run",
2625
"precoverage": "rimraf coverage",
2726
"coverage": "vitest run --coverage",
2827
"check-exports": "attw --pack .",
2928
"ci": "npm run lint && npm run build && npm run check-exports && npm run test",
30-
"local-release": "changeset version"
29+
"local-release": "changeset version",
30+
"changeset-publish": "changeset publish"
3131
},
3232
"repository": {
3333
"type": "git",

0 commit comments

Comments
 (0)