Skip to content

Commit e3c5bfe

Browse files
committed
feat: init docmark-util-symbol and docmark-util-types
Signed-off-by: Lexus Drumgold <unicornware@flexdevelopment.llc>
1 parent bcb49ef commit e3c5bfe

201 files changed

Lines changed: 7852 additions & 3418 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.codecov.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,10 @@ component_management:
2828
name: docmark
2929
paths:
3030
- packages/docmark/**/*.mts
31-
- component_id: docmark-core
32-
name: docmark-core
33-
paths:
34-
- packages/docmark-core/**/*.mts
3531
- component_id: docmark-factory-space
3632
name: docmark-factory-space
3733
paths:
3834
- packages/docmark-factory-space/**/*.mts
39-
- component_id: docmark-factory-whitespace
40-
name: docmark-factory-whitespace
41-
paths:
42-
- packages/docmark-factory-whitespace/**/*.mts
43-
- component_id: docmark-util-combine-extensions
44-
name: docmark-util-combine-extensions
45-
paths:
46-
- packages/docmark-util-combine-extensions/**/*.mts
4735
- component_id: docmark-util-subtokenize
4836
name: docmark-util-subtokenize
4937
paths:
@@ -140,6 +128,7 @@ ignore:
140128
- '**/interfaces/**'
141129
- '**/types/**'
142130
- '!packages/*/src/index.mts'
131+
- 'packages/docmark-util-types/**'
143132

144133
profiling:
145134
critical_files_paths: []

.commitlintrc.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,13 @@ import { scopes } from '@flex-development/commitlint-config'
1818
const config: UserConfig = {
1919
extends: ['@flex-development'],
2020
rules: {
21-
'scope-enum': [Severity.Error, 'always', scopes(['chore'])]
21+
'scope-enum': [Severity.Error, 'always', scopes([
22+
'chore',
23+
'docmark',
24+
'factory-space',
25+
'subtokenize',
26+
'symbol'
27+
])]
2228
}
2329
}
2430

.dictionary.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ cefc
33
commitlintrc
44
dedupe
55
devlop
6+
exiter
67
fbca
78
gpgsign
89
hmarr
@@ -13,3 +14,4 @@ unstub
1314
vates
1415
vitest
1516
yarnrc
17+
zwnj

.dprint.jsonc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
"commands": [
1919
{
2020
"cacheKeyFiles": ["package.json"],
21-
"command": "node --experimental-strip-types --experimental-transform-types ./dprint/remark.mts {{file_path}}",
21+
"command": "node --experimental-strip-types ./dprint/remark.mts {{file_path}}",
2222
"exts": ["md", "mdx"],
2323
"stdin": true
2424
},
2525
{
2626
"cacheKeyFiles": [".editorconfig"],
27-
"command": "node --experimental-strip-types --experimental-transform-types ./dprint/shfmt.mts {{file_path}}",
27+
"command": "node --experimental-strip-types ./dprint/shfmt.mts {{file_path}}",
2828
"exts": ["sh", "zsh"],
2929
"fileNames": [
3030
".editorconfig",

.github/infrastructure.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@ branches:
2323
checks:
2424
- context: add-to-project
2525
- context: artifacts (docmark)
26-
- context: artifacts (docmark-core)
27-
- context: artifacts (docmark-core-commonmark)
2826
- context: artifacts (docmark-factory-space)
29-
- context: artifacts (docmark-factory-whitespace)
30-
- context: artifacts (docmark-util-combine-extensions)
3127
- context: artifacts (docmark-util-subtokenize)
3228
- context: artifacts (docmark-util-symbol)
3329
- context: artifacts (docmark-util-types)
@@ -37,11 +33,7 @@ branches:
3733
- context: codecov/patch
3834
- context: codecov/project
3935
- context: codecov/project/docmark
40-
- context: codecov/project/docmark-core
41-
- context: codecov/project/docmark-core-commonmark
4236
- context: codecov/project/docmark-factory-space
43-
- context: codecov/project/docmark-factory-whitespace
44-
- context: codecov/project/docmark-util-combine-extensions
4537
- context: codecov/project/docmark-util-subtokenize
4638
- context: codecov/project/docmark-util-symbol
4739
- context: commitlint
@@ -94,9 +86,6 @@ labels:
9486
- name: package:docmark-factory-whitespace
9587
description: '@flex-development/docmark-factory-whitespace'
9688
color: c6cde1
97-
- name: package:docmark-util-combine-extensions
98-
description: '@flex-development/docmark-util-combine-extensions'
99-
color: c6cde1
10089
- name: package:docmark-util-subtokenize
10190
description: '@flex-development/docmark-util-subtokenize'
10291
color: c6cde1

0 commit comments

Comments
 (0)