Skip to content

Commit 5f2578d

Browse files
authored
chore(release): bump version and deploy packages (#312)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## @mheob/[email protected] ### Patch Changes - [#311](#311) ([@mheob](https://github.com/mheob)): update jsdoc handling and bump deps
1 parent 60146ca commit 5f2578d

31 files changed

+121
-7
lines changed

.changeset/pretty-cherries-relax.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/eslint-config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @mheob/eslint-config
22

3+
## 8.14.2
4+
5+
### Patch Changes
6+
7+
- [#311](https://github.com/mheob/config/pull/311) ([@mheob](https://github.com/mheob)): update jsdoc handling and bump deps
8+
39
## 8.14.1
410

511
### Patch Changes

packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mheob/eslint-config",
3-
"version": "8.14.1",
3+
"version": "8.14.2",
44
"description": "My personal configuration for eslint.",
55
"keywords": [
66
"eslint",

packages/eslint-config/src/cli/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ import { run } from './run';
99

1010
const PACKAGE_NAME = '@mheob/eslint-config';
1111

12+
/**
13+
*
14+
*/
1215
function header(): void {
1316
console.log('\n');
1417
p.intro(c.green`${PACKAGE_NAME} ` + c.dim`v${version}`);

packages/eslint-config/src/cli/run.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ export interface CliRunOptions {
2424
yes?: boolean;
2525
}
2626

27+
/**
28+
*
29+
* @param options
30+
*/
2731
export async function run(options: CliRunOptions = {}): Promise<void> {
2832
const argumentSkipPrompt = Boolean(process.env.SKIP_PROMPT) || options.yes;
2933
const argumentTemplate = <FrameworkOption[]>(

packages/eslint-config/src/cli/stages/update-eslint-files.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ import parse from 'parse-gitignore';
1111
import type { PromptResult } from '../types';
1212
import { getEslintConfigContent } from '../utils';
1313

14+
/**
15+
*
16+
* @param result
17+
*/
1418
export async function updateEslintFiles(result: PromptResult): Promise<void> {
1519
const cwd = process.cwd();
1620
const pathESLintIgnore = path.join(cwd, '.eslintignore');

packages/eslint-config/src/cli/stages/update-package-json.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import { dependenciesMap } from '../constants';
1010
import type { PromptResult } from '../types';
1111
import { versionsMap } from '../versions-map.generated';
1212

13+
/**
14+
*
15+
* @param result
16+
*/
1317
export async function updatePackageJson(result: PromptResult): Promise<void> {
1418
const cwd = process.cwd();
1519

packages/eslint-config/src/cli/stages/update-vscode-settings.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ import { green } from 'ansis';
99
import { vscodeSettingsString } from '../constants';
1010
import type { PromptResult } from '../types';
1111

12+
/**
13+
*
14+
* @param result
15+
*/
1216
export async function updateVscodeSettings(result: PromptResult): Promise<void> {
1317
const cwd = process.cwd();
1418

packages/eslint-config/src/configs/astro.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ import { GLOB_ASTRO } from '../globs';
22
import type { OptionsFiles, OptionsOverrides, TypedFlatConfigItem } from '../types';
33
import { ensurePackages, interopDefault } from '../utils';
44

5+
/**
6+
*
7+
* @param options
8+
*/
59
export async function astro(
610
options: OptionsFiles & OptionsOverrides = {},
711
): Promise<TypedFlatConfigItem[]> {

packages/eslint-config/src/configs/command.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ import createCommand from 'eslint-plugin-command/config';
22

33
import type { TypedFlatConfigItem } from '../types';
44

5+
/**
6+
*
7+
*/
58
export async function command(): Promise<TypedFlatConfigItem[]> {
69
return [
710
{

0 commit comments

Comments
 (0)