Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .yarn/versions/3e29249f.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

approvedGitRepositories:
- '**'
changesetBaseRefs: 1.0.0-alpha.24
changesetBaseRefs: 1.0.0-alpha.25
changesetIgnorePatterns:
- '**/__fixtures__/**'
- '**/__snapshots__/**'
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docmark",
"description": "a comment parser ecosystem with support for markdown",
"version": "1.0.0-alpha.24",
"version": "1.0.0-alpha.25",
"keywords": [],
"license": "BSD-3-Clause",
"homepage": "https://github.com/flex-development/docmark",
Expand Down
40 changes: 40 additions & 0 deletions packages/docmark-factory-block/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
## [docmark-factory-block@1.0.0-alpha.9](https://github.com/flex-development/docmark/compare/docmark-factory-block@1.0.0-alpha.8...docmark-factory-block@1.0.0-alpha.9) (2026-09-25)

### ⚠ BREAKING CHANGES

- drop source language `scss`
- indented syntax support
- **factory-line:** emit `commentOpener` token

### :package: Build

- [[`509f306`](https://github.com/flex-development/docmark/commit/509f30671dcfcc147d890bccd105bb4b8fd95a64)] **deps-dev:** Bump cspell from 10.3.1 to 10.3.3 ([#290](https://github.com/flex-development/docmark/issues/290))
- [[`6042ffc`](https://github.com/flex-development/docmark/commit/6042ffc212378ea2b159c3187f3dd26c8cb8ee3d)] **deps-dev:** bump eslint from 9.39.4 to 9.39.5
- [[`dd9afcd`](https://github.com/flex-development/docmark/commit/dd9afcd9b2ef9f8907372a1f024e61d5d387e227)] **deps-dev:** Bump rolldown from 1.2.8 to 1.2.9 ([#291](https://github.com/flex-development/docmark/issues/291))
- [[`54c8658`](https://github.com/flex-development/docmark/commit/54c8658afa0d8367e2ee82c01b48e8f0a843efee)] **deps-dev:** Bump rollup from 4.63.3 to 4.63.4 ([#295](https://github.com/flex-development/docmark/issues/295))
- [[`06c7b6f`](https://github.com/flex-development/docmark/commit/06c7b6f7ab889326e93809b191d8fe2f62fb9f6a)] **deps-dev:** Bump the commitlint group with 2 updates ([#298](https://github.com/flex-development/docmark/issues/298))
- [[`e17e4de`](https://github.com/flex-development/docmark/commit/e17e4de2702684e3c752e1656dab8730c14c7166)] **deps-dev:** Bump the vitest group with 3 updates ([#289](https://github.com/flex-development/docmark/issues/289))
- [[`e7d1c55`](https://github.com/flex-development/docmark/commit/e7d1c55ae1f74916ca691f4a3e698c807a2baa59)] **deps-dev:** Bump tsx from 4.23.13 to 4.23.15 ([#299](https://github.com/flex-development/docmark/issues/299))

### :robot: Continuous Integration

- [[`79ce0e8`](https://github.com/flex-development/docmark/commit/79ce0e842a9c559e1820547b4f6302606639a65e)] **deps:** Bump codecov/codecov-action from 7.1.0 to 7.1.1 ([#288](https://github.com/flex-development/docmark/issues/288))

### :sparkles: Features

- [[`bedaa80`](https://github.com/flex-development/docmark/commit/bedaa8089df5cdea65cfbccc5716ae526925800f)] indented syntax support

### :bug: Fixes

- [[`bad3484`](https://github.com/flex-development/docmark/commit/bad3484744d199b7c2cc9a9e8ab10e4d09a558a2)] **factory-line:** open comment container after finishing opener

### :house_with_garden: Housekeeping

- [[`f5d3c80`](https://github.com/flex-development/docmark/commit/f5d3c8014287472854dbf7b4de177d783876e581)] fix `docmark-factory-identifier` release

### :mechanical_arm: Refactors

- [[`d46c6bc`](https://github.com/flex-development/docmark/commit/d46c6bc071a3d73bb2eb47c39fbfafc88b19e61a)] drop source language `scss`
- [[`90c205d`](https://github.com/flex-development/docmark/commit/90c205d72ad98d4c2a911e8bd87cf63b3d9b49ac)] **factory-line:** emit `commentOpener` token

## [docmark-factory-block@1.0.0-alpha.8](https://github.com/flex-development/docmark/compare/docmark-factory-block@1.0.0-alpha.7...docmark-factory-block@1.0.0-alpha.8) (2026-09-20)

### :sparkles: Features
Expand Down Expand Up @@ -252,3 +291,4 @@




12 changes: 6 additions & 6 deletions packages/docmark-factory-block/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@flex-development/docmark-factory-block",
"description": "docmark factory to parse block comments",
"version": "1.0.0-alpha.8",
"version": "1.0.0-alpha.9",
"keywords": [
"block-comment",
"docmark",
Expand Down Expand Up @@ -52,11 +52,11 @@
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"dependencies": {
"@flex-development/docmark-factory-markers": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-factory-space": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-grammar": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-util-symbol": "workspace:1.0.0-alpha.9",
"@flex-development/docmark-util-types": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-factory-markers": "workspace:1.0.0-alpha.16",
"@flex-development/docmark-factory-space": "workspace:1.0.0-alpha.16",
"@flex-development/docmark-grammar": "workspace:1.0.0-alpha.16",
"@flex-development/docmark-util-symbol": "workspace:1.0.0-alpha.10",
"@flex-development/docmark-util-types": "workspace:1.0.0-alpha.16",
"@flex-development/mark-util-character": "1.1.0",
"devlop": "1.1.0"
},
Expand Down
36 changes: 36 additions & 0 deletions packages/docmark-factory-identifier/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
## [docmark-factory-identifier@1.0.0-alpha.8](https://github.com/flex-development/docmark/compare/docmark-factory-identifier@1.0.0-alpha.7...docmark-factory-identifier@1.0.0-alpha.8) (2026-09-25)

### ⚠ BREAKING CHANGES

- drop source language `scss`
- indented syntax support
- **factory-line:** emit `commentOpener` token

### :package: Build

- [[`509f306`](https://github.com/flex-development/docmark/commit/509f30671dcfcc147d890bccd105bb4b8fd95a64)] **deps-dev:** Bump cspell from 10.3.1 to 10.3.3 ([#290](https://github.com/flex-development/docmark/issues/290))
- [[`6042ffc`](https://github.com/flex-development/docmark/commit/6042ffc212378ea2b159c3187f3dd26c8cb8ee3d)] **deps-dev:** bump eslint from 9.39.4 to 9.39.5
- [[`dd9afcd`](https://github.com/flex-development/docmark/commit/dd9afcd9b2ef9f8907372a1f024e61d5d387e227)] **deps-dev:** Bump rolldown from 1.2.8 to 1.2.9 ([#291](https://github.com/flex-development/docmark/issues/291))
- [[`54c8658`](https://github.com/flex-development/docmark/commit/54c8658afa0d8367e2ee82c01b48e8f0a843efee)] **deps-dev:** Bump rollup from 4.63.3 to 4.63.4 ([#295](https://github.com/flex-development/docmark/issues/295))
- [[`06c7b6f`](https://github.com/flex-development/docmark/commit/06c7b6f7ab889326e93809b191d8fe2f62fb9f6a)] **deps-dev:** Bump the commitlint group with 2 updates ([#298](https://github.com/flex-development/docmark/issues/298))
- [[`e17e4de`](https://github.com/flex-development/docmark/commit/e17e4de2702684e3c752e1656dab8730c14c7166)] **deps-dev:** Bump the vitest group with 3 updates ([#289](https://github.com/flex-development/docmark/issues/289))
- [[`e7d1c55`](https://github.com/flex-development/docmark/commit/e7d1c55ae1f74916ca691f4a3e698c807a2baa59)] **deps-dev:** Bump tsx from 4.23.13 to 4.23.15 ([#299](https://github.com/flex-development/docmark/issues/299))

### :robot: Continuous Integration

- [[`79ce0e8`](https://github.com/flex-development/docmark/commit/79ce0e842a9c559e1820547b4f6302606639a65e)] **deps:** Bump codecov/codecov-action from 7.1.0 to 7.1.1 ([#288](https://github.com/flex-development/docmark/issues/288))

### :sparkles: Features

- [[`bedaa80`](https://github.com/flex-development/docmark/commit/bedaa8089df5cdea65cfbccc5716ae526925800f)] indented syntax support

### :bug: Fixes

- [[`bad3484`](https://github.com/flex-development/docmark/commit/bad3484744d199b7c2cc9a9e8ab10e4d09a558a2)] **factory-line:** open comment container after finishing opener

### :mechanical_arm: Refactors

- [[`d46c6bc`](https://github.com/flex-development/docmark/commit/d46c6bc071a3d73bb2eb47c39fbfafc88b19e61a)] drop source language `scss`
- [[`90c205d`](https://github.com/flex-development/docmark/commit/90c205d72ad98d4c2a911e8bd87cf63b3d9b49ac)] **factory-line:** emit `commentOpener` token

## [docmark-factory-identifier@1.0.0-alpha.7](https://github.com/flex-development/docmark/compare/docmark-factory-identifier@1.0.0-alpha.6...docmark-factory-identifier@1.0.0-alpha.7) (2026-09-21)

### :sparkles: Features
Expand Down Expand Up @@ -274,3 +309,4 @@




6 changes: 3 additions & 3 deletions packages/docmark-factory-identifier/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@flex-development/docmark-factory-identifier",
"description": "docmark factory to parse identifiers",
"version": "1.0.0-alpha.7",
"version": "1.0.0-alpha.8",
"keywords": [
"docmark",
"factory",
Expand Down Expand Up @@ -49,8 +49,8 @@
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"dependencies": {
"@flex-development/docmark-util-symbol": "workspace:1.0.0-alpha.9",
"@flex-development/docmark-util-types": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-util-symbol": "workspace:1.0.0-alpha.10",
"@flex-development/docmark-util-types": "workspace:1.0.0-alpha.16",
"@flex-development/mark-util-character": "1.1.0"
},
"sideEffects": false
Expand Down
21 changes: 21 additions & 0 deletions packages/docmark-factory-line/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## [docmark-factory-line@1.0.0-alpha.12](https://github.com/flex-development/docmark/compare/docmark-factory-line@1.0.0-alpha.11...docmark-factory-line@1.0.0-alpha.12) (2026-09-25)

### ⚠ BREAKING CHANGES

- drop source language `scss`
- indented syntax support

### :package: Build

- [[`06c7b6f`](https://github.com/flex-development/docmark/commit/06c7b6f7ab889326e93809b191d8fe2f62fb9f6a)] **deps-dev:** Bump the commitlint group with 2 updates ([#298](https://github.com/flex-development/docmark/issues/298))
- [[`e7d1c55`](https://github.com/flex-development/docmark/commit/e7d1c55ae1f74916ca691f4a3e698c807a2baa59)] **deps-dev:** Bump tsx from 4.23.13 to 4.23.15 ([#299](https://github.com/flex-development/docmark/issues/299))

### :sparkles: Features

- [[`bedaa80`](https://github.com/flex-development/docmark/commit/bedaa8089df5cdea65cfbccc5716ae526925800f)] indented syntax support

### :mechanical_arm: Refactors

- [[`d46c6bc`](https://github.com/flex-development/docmark/commit/d46c6bc071a3d73bb2eb47c39fbfafc88b19e61a)] drop source language `scss`

## [docmark-factory-line@1.0.0-alpha.11](https://github.com/flex-development/docmark/compare/docmark-factory-line@1.0.0-alpha.10...docmark-factory-line@1.0.0-alpha.11) (2026-09-22)

### :package: Build
Expand Down Expand Up @@ -292,3 +312,4 @@




12 changes: 6 additions & 6 deletions packages/docmark-factory-line/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@flex-development/docmark-factory-line",
"description": "docmark factory to parse line comments",
"version": "1.0.0-alpha.11",
"version": "1.0.0-alpha.12",
"keywords": [
"docmark",
"factory",
Expand Down Expand Up @@ -54,11 +54,11 @@
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"dependencies": {
"@flex-development/docmark-factory-markers": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-factory-space": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-grammar": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-util-symbol": "workspace:1.0.0-alpha.9",
"@flex-development/docmark-util-types": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-factory-markers": "workspace:1.0.0-alpha.16",
"@flex-development/docmark-factory-space": "workspace:1.0.0-alpha.16",
"@flex-development/docmark-grammar": "workspace:1.0.0-alpha.16",
"@flex-development/docmark-util-symbol": "workspace:1.0.0-alpha.10",
"@flex-development/docmark-util-types": "workspace:1.0.0-alpha.16",
"@flex-development/mark-util-character": "1.1.0",
"devlop": "1.1.0"
},
Expand Down
40 changes: 40 additions & 0 deletions packages/docmark-factory-markers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
## [docmark-factory-markers@1.0.0-alpha.16](https://github.com/flex-development/docmark/compare/docmark-factory-markers@1.0.0-alpha.15...docmark-factory-markers@1.0.0-alpha.16) (2026-09-25)

### ⚠ BREAKING CHANGES

- drop source language `scss`
- indented syntax support
- **factory-line:** emit `commentOpener` token

### :package: Build

- [[`509f306`](https://github.com/flex-development/docmark/commit/509f30671dcfcc147d890bccd105bb4b8fd95a64)] **deps-dev:** Bump cspell from 10.3.1 to 10.3.3 ([#290](https://github.com/flex-development/docmark/issues/290))
- [[`6042ffc`](https://github.com/flex-development/docmark/commit/6042ffc212378ea2b159c3187f3dd26c8cb8ee3d)] **deps-dev:** bump eslint from 9.39.4 to 9.39.5
- [[`dd9afcd`](https://github.com/flex-development/docmark/commit/dd9afcd9b2ef9f8907372a1f024e61d5d387e227)] **deps-dev:** Bump rolldown from 1.2.8 to 1.2.9 ([#291](https://github.com/flex-development/docmark/issues/291))
- [[`54c8658`](https://github.com/flex-development/docmark/commit/54c8658afa0d8367e2ee82c01b48e8f0a843efee)] **deps-dev:** Bump rollup from 4.63.3 to 4.63.4 ([#295](https://github.com/flex-development/docmark/issues/295))
- [[`06c7b6f`](https://github.com/flex-development/docmark/commit/06c7b6f7ab889326e93809b191d8fe2f62fb9f6a)] **deps-dev:** Bump the commitlint group with 2 updates ([#298](https://github.com/flex-development/docmark/issues/298))
- [[`e17e4de`](https://github.com/flex-development/docmark/commit/e17e4de2702684e3c752e1656dab8730c14c7166)] **deps-dev:** Bump the vitest group with 3 updates ([#289](https://github.com/flex-development/docmark/issues/289))
- [[`e7d1c55`](https://github.com/flex-development/docmark/commit/e7d1c55ae1f74916ca691f4a3e698c807a2baa59)] **deps-dev:** Bump tsx from 4.23.13 to 4.23.15 ([#299](https://github.com/flex-development/docmark/issues/299))

### :robot: Continuous Integration

- [[`79ce0e8`](https://github.com/flex-development/docmark/commit/79ce0e842a9c559e1820547b4f6302606639a65e)] **deps:** Bump codecov/codecov-action from 7.1.0 to 7.1.1 ([#288](https://github.com/flex-development/docmark/issues/288))

### :sparkles: Features

- [[`bedaa80`](https://github.com/flex-development/docmark/commit/bedaa8089df5cdea65cfbccc5716ae526925800f)] indented syntax support

### :bug: Fixes

- [[`bad3484`](https://github.com/flex-development/docmark/commit/bad3484744d199b7c2cc9a9e8ab10e4d09a558a2)] **factory-line:** open comment container after finishing opener

### :house_with_garden: Housekeeping

- [[`f5d3c80`](https://github.com/flex-development/docmark/commit/f5d3c8014287472854dbf7b4de177d783876e581)] fix `docmark-factory-identifier` release

### :mechanical_arm: Refactors

- [[`d46c6bc`](https://github.com/flex-development/docmark/commit/d46c6bc071a3d73bb2eb47c39fbfafc88b19e61a)] drop source language `scss`
- [[`90c205d`](https://github.com/flex-development/docmark/commit/90c205d72ad98d4c2a911e8bd87cf63b3d9b49ac)] **factory-line:** emit `commentOpener` token

## [docmark-factory-markers@1.0.0-alpha.15](https://github.com/flex-development/docmark/compare/docmark-factory-markers@1.0.0-alpha.14...docmark-factory-markers@1.0.0-alpha.15) (2026-09-20)

### :sparkles: Features
Expand Down Expand Up @@ -339,3 +378,4 @@




6 changes: 3 additions & 3 deletions packages/docmark-factory-markers/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@flex-development/docmark-factory-markers",
"description": "docmark factory to parse comment markers",
"version": "1.0.0-alpha.15",
"version": "1.0.0-alpha.16",
"keywords": [
"comment",
"docmark",
Expand Down Expand Up @@ -54,8 +54,8 @@
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"dependencies": {
"@flex-development/docmark-util-symbol": "workspace:1.0.0-alpha.9",
"@flex-development/docmark-util-types": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-util-symbol": "workspace:1.0.0-alpha.10",
"@flex-development/docmark-util-types": "workspace:1.0.0-alpha.16",
"@flex-development/mark": "1.0.0-alpha.4",
"devlop": "1.1.0"
},
Expand Down
40 changes: 40 additions & 0 deletions packages/docmark-factory-space/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
## [docmark-factory-space@1.0.0-alpha.16](https://github.com/flex-development/docmark/compare/docmark-factory-space@1.0.0-alpha.15...docmark-factory-space@1.0.0-alpha.16) (2026-09-25)

### ⚠ BREAKING CHANGES

- drop source language `scss`
- indented syntax support
- **factory-line:** emit `commentOpener` token

### :package: Build

- [[`509f306`](https://github.com/flex-development/docmark/commit/509f30671dcfcc147d890bccd105bb4b8fd95a64)] **deps-dev:** Bump cspell from 10.3.1 to 10.3.3 ([#290](https://github.com/flex-development/docmark/issues/290))
- [[`6042ffc`](https://github.com/flex-development/docmark/commit/6042ffc212378ea2b159c3187f3dd26c8cb8ee3d)] **deps-dev:** bump eslint from 9.39.4 to 9.39.5
- [[`dd9afcd`](https://github.com/flex-development/docmark/commit/dd9afcd9b2ef9f8907372a1f024e61d5d387e227)] **deps-dev:** Bump rolldown from 1.2.8 to 1.2.9 ([#291](https://github.com/flex-development/docmark/issues/291))
- [[`54c8658`](https://github.com/flex-development/docmark/commit/54c8658afa0d8367e2ee82c01b48e8f0a843efee)] **deps-dev:** Bump rollup from 4.63.3 to 4.63.4 ([#295](https://github.com/flex-development/docmark/issues/295))
- [[`06c7b6f`](https://github.com/flex-development/docmark/commit/06c7b6f7ab889326e93809b191d8fe2f62fb9f6a)] **deps-dev:** Bump the commitlint group with 2 updates ([#298](https://github.com/flex-development/docmark/issues/298))
- [[`e17e4de`](https://github.com/flex-development/docmark/commit/e17e4de2702684e3c752e1656dab8730c14c7166)] **deps-dev:** Bump the vitest group with 3 updates ([#289](https://github.com/flex-development/docmark/issues/289))
- [[`e7d1c55`](https://github.com/flex-development/docmark/commit/e7d1c55ae1f74916ca691f4a3e698c807a2baa59)] **deps-dev:** Bump tsx from 4.23.13 to 4.23.15 ([#299](https://github.com/flex-development/docmark/issues/299))

### :robot: Continuous Integration

- [[`79ce0e8`](https://github.com/flex-development/docmark/commit/79ce0e842a9c559e1820547b4f6302606639a65e)] **deps:** Bump codecov/codecov-action from 7.1.0 to 7.1.1 ([#288](https://github.com/flex-development/docmark/issues/288))

### :sparkles: Features

- [[`bedaa80`](https://github.com/flex-development/docmark/commit/bedaa8089df5cdea65cfbccc5716ae526925800f)] indented syntax support

### :bug: Fixes

- [[`bad3484`](https://github.com/flex-development/docmark/commit/bad3484744d199b7c2cc9a9e8ab10e4d09a558a2)] **factory-line:** open comment container after finishing opener

### :house_with_garden: Housekeeping

- [[`f5d3c80`](https://github.com/flex-development/docmark/commit/f5d3c8014287472854dbf7b4de177d783876e581)] fix `docmark-factory-identifier` release

### :mechanical_arm: Refactors

- [[`d46c6bc`](https://github.com/flex-development/docmark/commit/d46c6bc071a3d73bb2eb47c39fbfafc88b19e61a)] drop source language `scss`
- [[`90c205d`](https://github.com/flex-development/docmark/commit/90c205d72ad98d4c2a911e8bd87cf63b3d9b49ac)] **factory-line:** emit `commentOpener` token

## [docmark-factory-space@1.0.0-alpha.15](https://github.com/flex-development/docmark/compare/docmark-factory-space@1.0.0-alpha.14...docmark-factory-space@1.0.0-alpha.15) (2026-09-20)

### :sparkles: Features
Expand Down Expand Up @@ -406,5 +445,6 @@






4 changes: 2 additions & 2 deletions packages/docmark-factory-space/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@flex-development/docmark-factory-space",
"description": "docmark factory to parse docmark space",
"version": "1.0.0-alpha.15",
"version": "1.0.0-alpha.16",
"keywords": [
"docmark",
"factory",
Expand Down Expand Up @@ -49,7 +49,7 @@
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"dependencies": {
"@flex-development/docmark-util-types": "workspace:1.0.0-alpha.15",
"@flex-development/docmark-util-types": "workspace:1.0.0-alpha.16",
"@flex-development/mark-util-character": "1.1.0",
"micromark-util-types": "2.0.2"
},
Expand Down
Loading
Loading